-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsemantic-elements.html
68 lines (58 loc) · 1.21 KB
/
semantic-elements.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Semantic Tags</title>
</head>
<body>
<header>
<img id="logo">
<nav>
<ul>
<li><a href="#">anasayfa</a></li>
<li><a href="#">kurs</a></li>
<li><a href="#">makale</a></li>
</ul>
</nav>
</header>
<aside>
<h2>Kategoriler</h2>
<nav>
<h3>Html</h3>
<ul>
<li><a href="#">html nedir?</a></li>
<li><a href="#">ilk html sayfası</a></li>
</ul>
</nav>
<nav>
<h3>Css</h3>
<ul>
<li><a href="#">Css nedir?</a></li>
<li><a href="#">Css söz dizimi</a></li>
</ul>
</nav>
</aside>
<main>
<h1>Html ve Css Dersleri</h1>
<p>
Html ve css dersleri için sadikturan.com'u ziyaret edebilirsiniz.
</p>
<article>
<h2>Html nedir?</h2>
<p>Html nedir ve ne amaçla kullanılır, bu yazımızda bulabilirsiniz.</p>
<p>
Sadık Turan tarafından <time datetime="2018-05-06 19:00">yayınlandı.</time>
</p>
</article>
<article>
<h2>Css nedir?</h2>
<p>Css nedir ve ne amaçla kullanılır, bu yazımızda bulabilirsiniz.</p>
</article>
<section>
</section>
</main>
<footer>
Tüm hakları saklıdır. 2018
</footer>
</body>
</html>