-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (56 loc) · 1.83 KB
/
index.html
File metadata and controls
56 lines (56 loc) · 1.83 KB
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
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="aset/style.css">
<title>Dasar Web</title>
</head>
<body>
<header>
<nav>
<a href="#" class="title"><h1>Game <span>Store</h1></span></a>
<ul>
<li><a href="#new">What's New</a></li>
<li><a href="#game">Game List</a></li>
<li><a href="#">Cart</a></li>
<li><a href="#">Profile</a></li>
</ul>
</nav>
</header>
<main>
<div id="content">
<aside class="first">
<div class="bio">
<h2>Biodata</h2>
<img src="img/AgilFIkriawan.jpg" alt="" width="150px">
<table cellpadding="10">
<tr>
<td>Nama : </td>
<td>Agil Fikriawan</td>
</tr>
<tr>
<td>Umur : </td>
<td>20 Tahun</td>
</tr>
</table>
</div>
</aside>
<div class="second">
<div class="desc">
<article id="new">
<img src="gameImg/H2FW.jpg" alt="" class="newsImg">
</article>
<article id="game" class="game">
<script type="text/javascript" src="aset/script.js"></script>
</article>
</div>
</div>
</div>
</main>
<footer>
<p>Belajar Dasar Pemrograman Web © 2022, Agil Fikriawan</p>
</footer>
</body>
</html>