-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathaboutus.html
More file actions
64 lines (49 loc) · 2.22 KB
/
aboutus.html
File metadata and controls
64 lines (49 loc) · 2.22 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>About Us</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="aboutus.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css">
<script src="https://kit.fontawesome.com/dbed6b6114.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- HEADER -->
<header>
<nav class="navbar">
<h1 id="new">Pîx∅b¡ã</h1>
<div class="search">
<input type="search" name="search" id="search" placeholder="search this website">
</div>
<div class="right-navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="aboutus.html">About</a></li>
<li><a href="gallery.html">My Photography</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
</nav>
</header>
<section>
<div class = "image">
<!-- image here -->
</div>
<div class = "content">
<h2>About Me</h2>
<span><!-- line here --></span>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Eveniet quas repudiandae nam voluptatem corrupti tempore placeat quasi iusto, repellendus, incidunt ut suscipit est distinctio molestias, amet voluptates id. Ratione, consectetur.</p>
<ul class = "links">
<li><a href = "gallery.html">My-Photography</a></li>
<div class = "vertical-line"></div>
<li><a href = "contact.html">Contact-Me</a></li>
<div class = "vertical-line"></div>
<li><a href = "index.html">Home-Page</a></li>
</ul>
</div>
</section>
</body>
</html>