-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (29 loc) · 871 Bytes
/
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
<!doctype html>
<html>
<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>Halaman Utama</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<a href="index.html" class="logo">dimasf.</a>
<nav class="navbar">
<a href="index.html" class="active">Home</a>
</nav>
</header>
<section class="home">
<div class="home-content">
<h1>Hello, I'm Dimas Faozan</h1>
<h3>Mahasiswa</h3>
<p>Web sederhana untuk mengumpulkan tugas Sistem Informasi.</p>
<div class="btn-box">
<a href="tugas.html">Tugas</a>
<a href="https://github.com/dmsfzn">Contact</a>
</div>
</div>
</section>
</body>
</html>