-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsemantic.html
25 lines (25 loc) · 1.37 KB
/
semantic.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Semantic HTML - HyNusantara Academy</title>
</head>
<body>
<header>
<h1>Semantic HTML - HyNusantara Academy</h1>
<nav>
<a href="">Beranda</a>
<a href="about.html">Tentang Kami</a>
</nav>
</header>
<section>
<p>Ini adalah contoh web yang menggunakan Semantic HTML pada elemennya. Silahkan perhatikan perbedaan penggunaan elemen-elemen pada source code. Konsep Semantic HTML mengurangi/menghindari penggunaan elemen <b>div</b> dan <b>span</b> pada layout. Dan memprioritaskan penggunaan elemen-elemen baru pada HTML5 seperti <b>section, article, header, footer, dan sebagainya</b>.</p>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Illum architecto harum suscipit culpa perferendis at aspernatur voluptate quae vero laboriosam voluptates ad officiis, unde atque a magnam? Cumque, omnis et?</p>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Inventore mollitia natus eius fugiat eligendi neque eaque voluptatibus sed laudantium corrupti ut sunt consectetur praesentium incidunt, doloremque magnam tempore libero non.</p>
</section>
<footer>
Semantic HTML © 2020 by HyNusantara Academy
</footer>
</body>
</html>