-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
169 lines (145 loc) · 4.67 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en">
<style>
html {
background-color: #000;
}
#spinner-container {
display: grid;
justify-items: center;
align-items: center;
position: fixed;
inset: 0;
background-color: #000;
z-index: 9;
transition: .75s ease opacity;
}
</style>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Free python/html/css/js course and exercices with correction">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="keywords" content="free courses python html css javascript front-end web-dev">
<link rel="shortcut icon" href="/img/3 Info.png">
<link rel="stylesheet" href="/css/primary.css">
<link rel="stylesheet" href="/css/home.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap"
rel="stylesheet">
<title>Home</title>
</head>
<body onload="hideLoader()">
<div id="spinner-container">
<div class="spinner" id="spinner" style="scale: 1.5;"></div>
</div>
<!-- return to top link -->
<a href="#top" id="top" aria-hidden="true"></a>
<!-- side bar -->
<aside id="aside" class="close">
<div class="head">
<h2>Menu</h2>
</div>
<div class="body">
<ul class="aside-list">
<div>
<li><a href="./index.html">Home</a></li>
<li><a href="#top" onclick="toggleAside()">Top</a></li>
</div>
<div>
<li><a href="./python/python.html">Python</a></li>
<li><a href="#">HTML</a></li>
</div>
<div>
<li><a href="#">Css</a></li>
<li><a href="#">Javascript</a></li>
</div>
<div>
<li><a href="#footer" onclick="toggleAside()">Contact</a></li>
<li><a href="./about.html">About-us</a></li>
</div>
</ul>
</div>
<div class="foot">
<span>copyright 2023</span>
</div>
</aside>
<!-- side bar button -->
<button class="toggle-aside" id="toggle-aside" onclick="toggleAside()">
<img src="/svg/right arrow.svg" height="30" alt="Menu">
</button>
<!--* header -->
<div class="hero-bg">
</div>
<header>
<h1 class="header-title">3ème Info</h1>
</header>
<!--* main -->
<main>
<section id="hero">
<!-- <div class="hero-left"> -->
<h3 class="hero-title">Hello, we are 3eme info class.</h3>
<p class="hero-p">Our school is Sidi-Hssin secondary-school, we study <span>Python/Front-end</span> and
algorithmique. we welcome you to our class.</p>
<p class="hero-p">this website contain our lessons and courses (Python/html/css/javascript) besides the
exercices that we do in the class.</p>
<p class="hero-p">We are happy that you choose this website and this source to learn/practice/develop your
programming skills and knowledge.</p>
<div class="hero-btns">
<a href="./index.html">Home</a>
</div>
<!-- </div> -->
</section>
</main>
<style>
main {
display: grid;
align-items: center;
justify-content: center;
}
#hero {
margin-top: -10%;
display: grid;
}
</style>
<!--* footer -->
<footer id="footer">
<div class="footer-left">
<ul class="footer-list">
<li><a href="./index.html">Home</a></li>
<li><a href="#footer">Contact</a></li>
<li><a href="https://github.com/Wissem-Zidi/school-project">Source Code</a></li>
<li><a href="https://github.com/Wissem-Zidi">Author</a></li>
<li><a href="./about.html">About-us</a></li>
</ul>
</div>
<div class="footer-middle">
<ul class="footer-list">
<li><a href="./python/python.html">Python</a></li>
<li><a href="#">Html</a></li>
<li><a href="#">Css</a></li>
<li><a href="#">Javascript</a></li>
</ul>
</div>
<div class="footer-right">
<div class="go-top">
<a href="#top">
<img src="/svg/top.svg" height="30" alt="Top">
</a>
</div>
<div class="footer-contact">
<form method="GET">
<textarea name="msg" id="footer-textarea" rows="1" placeholder="write us a message"
style="resize: none;"></textarea>
<button type="submit">Send</button>
</form>
</div>
</div>
</footer>
<script src="/js/home.js"></script>
<noscript style="color: red;">Please reactivate the scripts because it will affect some parts of the
website</noscript>
</body>
</html>