105 lines
2.4 KiB
HTML
105 lines
2.4 KiB
HTML
<!DOCTYPE html> <!-- html5 -->
|
|
<html>
|
|
<head>
|
|
<title>Website personal saya yang sangat bermakna</title>
|
|
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<!-- meta = Informasi yang diperuntukkan untuk keperluan Search Engine dalam mencari website kita -->
|
|
|
|
<link rel="stylesheet" href="style.css" />
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<h1>Meaningful heading</h1>
|
|
</header>
|
|
|
|
<nav>
|
|
<div class="kolom-samping">
|
|
<a class="menu-item" href="index.html">Home</a>
|
|
</div>
|
|
|
|
<div class="kolom-samping">
|
|
<a class="menu-item" href="about.html">About</a>
|
|
</div>
|
|
|
|
<div class="kolom-samping">
|
|
<a class="menu-item" href="article.html">Article</a>
|
|
</div>
|
|
|
|
<div class="kolom-samping">
|
|
<a class="menu-item" href="contact.html">Contact</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<!--
|
|
<div></div>
|
|
Alternative div:
|
|
<header></header> buat header diatas
|
|
<nav></nav> buat menu navigasi
|
|
<article></article> buat artikel
|
|
<section></section> Buat section, contoh: Call-to-Action, Testimonial, Our Clients, etc
|
|
<main></main> Buat container / bagian utamanya
|
|
<footer></footer> Buat footer bagian bawah
|
|
-->
|
|
|
|
<hr>
|
|
|
|
<button class="custom-button">Click here</button>
|
|
<button class="custom-button">Click here</button>
|
|
|
|
<hr>
|
|
|
|
<hr>
|
|
|
|
<h1>Macam-macam Tipografi HTML</h1>
|
|
<hr>
|
|
<h1>Heading 1</h1>
|
|
<h2>Heading 2</h2>
|
|
<h3>Heading 3</h3>
|
|
<h4>Heading 4</h4>
|
|
<h5>Heading 5</h5>
|
|
<h6>Heading 6</h6>
|
|
|
|
<p>Paragraph</p>
|
|
|
|
<span>Text</span>,
|
|
<b>Bold</b>,
|
|
<strong>Strong</strong>,
|
|
<i>Italic</i>,
|
|
<em>Emphatized</em>,
|
|
<small>Small</small>,
|
|
<mark>Mark</mark>,
|
|
<del>Delete</del> and <ins>Insert</ins>,
|
|
<u>Underline</u>
|
|
|
|
<hr>
|
|
|
|
<table style="width: 100%;">
|
|
<tr>
|
|
<td style="border: solid black 2px;">
|
|
<h1>1</h1>
|
|
</td>
|
|
<td style="border: solid black 2px;">
|
|
<h1>2</h1>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="border: solid black 2px;">
|
|
<h1>3</h1>
|
|
</td>
|
|
<td style="border: solid black 2px;">
|
|
<h1>4</h1>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
</html> |