-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
124 lines (120 loc) · 5.27 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
<!DOCTYPE html>
<html lang="en">
<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">
<title>about-Us page</title>
<link rel="stylesheet" href="about.css">
<link rel="stylesheet" href="about.html">
<link rel="stylesheet" href="style.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=Lato:wght@300;400;700;900&display=swap" rel="stylesheet">
</head>
<body>
<!-- Navigation section -->
<div id="cross">
<img id="cross1" src="./images/crossIcon.png" alt="cross-Icon">
<ul id="menu">
<li><a href="index.html">Home</a></li>
<li><a href="index.html#mainProgram" class="click">Courses</a></li>
<li><a href="index.html#staff" class="click">Staff</a></li>
<li><a href="about.html">About Us</a></li>
<li class="cont" ><a href="index.html#partners" class="click">Our Partners</a></li>
</ul>
</div>
<div class="aboutNav">
<div class="page">
<ul>
<li><img src="./images/twitter-48.png" alt="twitter-icon"></li>
<li><img src="./images/facebook-48.png" alt="linkedIn-icon"></li>
<li><a href="#">English</a></li>
<li><a href="#">My page</a></li>
<li><a href="#">Log out</a></li>
</ul>
</div>
<div class="nav">
<div class="logo">
<a href="index.html"><img src="./images/logo.jpg" alt="logo"></a>
</div>
<div class="navList">
<ul>
<li><a href="index.html#mainProgram">Courses</a></li>
<li><a href="index.html#staff">Staff</a></li>
<li><a href="about.html">About Us</a></li>
<li class="cont" ><a href="#">Contact Us</a></li>
</ul>
</div>
</div>
</div>
<!-- about section -->
<section id="about">
<div class="aboutUs">
<nav>
<div id="burgerIcon">
<img src="./images/burgerIcon.svg" alt="burgerIcon">
</div>
</nav>
<div id="aboutVision">
<p>"Hello! Teaching Code"</p>
<h2>THE GLOBAL SCHOOL<br> FOR CODING 2022</h2>
</div>
<div class="aboutPara">
<p class="para1">Lorem ipsum dolor sit amet consectetur adipisicing elit. Eum, at itaque. Eligendi incidunt nisi voluptate, iure quis pariatur quasi maxime!</p>
<p class="para2">Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam alias, sequi tempore maxime aliquam atque. Ullam quia molestias esse eligendi sapiente, commodi debitis voluptatum facere obcaecati facilis blanditiis omnis, corrupti nulla. Dolore libero possimus ullam odit asperiores sed quaerat laborum placeat! Omnis, tenetur! Harum, debitis quasi quisquam saepe voluptas nostrum?</p>
</div>
<div class="aboutEmail">
<p>If you have any questions regarding the school<br> Send us email on below address<br> <b>[email protected]</b></p>
</div>
</div>
<div class="aboutUsLogo">
<div>
<h2>THE GLOBAL SCHOOL<br> FOR CODING 2022</h2>
<hr>
</div>
<div>
<p>The logo of the school was designed by a student of the school on 1st May 2021</p>
</div>
<div>
<img src="./images/logo.jpg" alt="logo">
</div>
</div>
<div class="aboutUsPast">
<div>
<h2>See the results of our two past batches</h2>
<hr>
</div>
<div>
<p>The last two batches have sucessfully been completed with more then 95% sucess</p>
</div>
<div class="batchesHistory">
<div class="one">
<div class="batches">
<p>Our last batch, that ended in Dec 2021</p>
</div>
</div>
<div class="two">
<div class="batches">
<p>Our previous batch that ended in Dec 2020</p>
</div>
</div>
</div>
</div>
<div class="aboutUsPartners">
<div>
<div>
<h2>Our Partners</h2>
<hr>
</div>
</div>
</div>
<div class="copyright">
<img src="./images/logo.jpg" alt="icon">
<p class="copyrightPara1">Safar coding school,<br> All Rights Reserved</p>
<p class="copyrightPara2">Safar coding school, All Rights Reserved</p>
</div>
</section>
<script src="index.js"></script>
</body>
</html>