-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout-us.html
More file actions
67 lines (64 loc) · 2 KB
/
about-us.html
File metadata and controls
67 lines (64 loc) · 2 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
65
66
67
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ana Sayfa - HepsiBurada!</title>
</head>
<body>
<!-- Navbar - Start-->
<header>
<nav>
<ul>
<li>
<a href="./index.html">Anasayfa</a>
</li>
<li>
<a href="./about-us.html">Hakkımızda</a>
</li>
<li>
<a href="./contact.html">İletişim</a>
</li>
</ul>
</nav>
</header>
<!-- Navbar - End-->
<!-- Content - Start -->
<section>
<!-- Article Start -->
<article>
<h2>Hakkımızda</h2>
<img src="https://picsum.photos/200/300" alt="lorempicsum">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Consequatur, accusamus.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quam, illo.</p>
<p>Asperiores nemo impedit dignissimos voluptatem neque earum omnis fugiat reprehenderit!</p>
<p>Alias doloremque est beatae, officiis eligendi magnam atque hic tempore?</p>
<ol>
<li>Lorem, ipsum dolor.</li>
<li>Dignissimos, accusantium placeat?</li>
<li>Nulla, eaque tempore!</li>
<li>Eum, architecto vero.</li>
</ol>
<hr>
</article>
<!-- Article End -->
</section>
<!-- Content - End -->
<!-- Footer - Start -->
<footer>
<nav>
<ul>
<li>
<a href="./index.html">Anasayfa</a>
</li>
<li>
<a href="./about-us.html">Hakkımzıda</a>
</li>
<li>
<a href="./contact.html">İletişim</a>
</li>
</ul>
</nav>
</footer>
<!-- Footer - End -->
</body>
</html>