-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
66 lines (59 loc) · 2.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
<!doctype html>
<html>
<head>
<meta name="viewport" content="with=device-width,initial-scale=1.0">
<title>----------</title>
<link rel="stylesheet" href="style.css" type="text/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=Sofia+Sans+Condensed:wght@200;300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css">
</head>
<body>
<section class=" sub-header">
<nav>
<div class="nav-links" id="navLinks">
<i class="bi bi-x" onclick="hideMenu()"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-x" viewBox="0 0 16 16">
<path d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z"/>
</svg></i>
<ul>
<li><a href="html.html">HOME</a></li>
<li><a href="course.html">PHOTOS</a></li>
<li><a href="contect.html">CONTACT</a></li>
<li><a href="block.html">COMMENTS</a></li>
<li><a href="review.html">REVIEW</a></li>
<li><a href="about.html">ABOUT</a></li>
</ul></div>
<i class="bi bi-list" onclick="showMenu()"> <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="white" class="bi bi-list" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z"/>
</svg></i>
</nav>
<h1>ABOUT US </h1>
</section>
<!------about us contants--->
<section class="about-us">
<div class="row">
<div class="about-us">
<h1>----------</h1><br><br>
<p>----------</p><br><br>
<a href="contect.html" class="hero-btn red-btn">Contact us</a></div>
<div class="about-col">
<img src=".jpg">
</div>
</div>
</section>
<!------footer------>
<section class="footer">
<h4>ABOUT US</h4>
<p></p>
</section>
<!------javascript for toggle menue--->
<script>
var navLink = document.getElementById("navLinks");
function showMenu(){
navLink.style.right="0";
}
function hideMenu(){
navLink.style.right="-200px";
}
</script>
</body>
</html>