-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (77 loc) · 2.45 KB
/
index.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
<!DOCTYPE html>
<html lang="tr">
<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>Ana Sayfa | Kodluyoruz</title>
</head>
<body>
<!-- Navbar - Start -->
<header>
<nav>
<ul>
<li><a href="index.html">Ana Sayfa</a></li>
<li><a href="about-us.html">Hakkımızda</a></li>
<li><a href="contack.html">İletişim</a></li>
</ul>
</nav>
</header>
<!-- Navbar - End -->
<!-- Contect - Start -->
<section>
<!-- Articles - Start -->
<article>
<h2>Birinci Yazı</h2>
<img src="https://picsum.photos/id/237/600/300
" alt="Yazi 1">
<p>Lorem ipsum dolor sit amet.</p>
<p>Aspernatur dolorum ab eos doloremque!</p>
<p>Qui vel iure provident similique.</p>
<ol>
<li>Lorem, ipsum dolor.</li>
<li>Officia, error accusantium?</li>
<li>Delectus, tempore tempora?</li>
<li>Officiis, quasi enim!</li>
</ol>
<hr>
</article>
<article>
<h2>İkinci Yazı</h2>
<img src="https://picsum.photos/id/137/600/300
" alt="Yazi 1">
<p>Lorem ipsum dolor sit amet.</p>
<p>Aspernatur dolorum ab eos doloremque!</p>
<p>Qui vel iure provident similique.</p>
<ul>
<li>Lorem, ipsum dolor.</li>
<li>Officia, error accusantium?</li>
<li>Delectus, tempore tempora?</li>
<li>Officiis, quasi enim!</li>
</ul>
<hr>
</article>
<article>
<h2>Üçüncü Yazı</h2>
<img src="https://picsum.photos/id/267/600/300
" alt="Yazi 1">
<p>Lorem ipsum dolor sit amet.</p>
<p>Aspernatur dolorum ab eos doloremque!</p>
<p>Qui vel iure provident similique.</p>
<hr>
</article>
<!-- Articles - End -->
</section>
<!-- Footer - Start -->
<footer>
<nav>
<ul>
<li><a href="index.html">Ana Sayfa</a></li>
<li><a href="about-us.html">Hakkımızda</a></li>
<li><a href="contack.html">İletişim</a></li>
</ul>
</nav>
</footer>
<!-- Footer - End -->
</body>
</html>