-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
33 lines (30 loc) · 1.29 KB
/
Index.html
File metadata and controls
33 lines (30 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<!-- Script -->
<script defer src="index.js"></script>
<title>Shop List</title>
</head>
<body>
<header>
<nav class="navbar navbar-expand-md bg-light">
<div class="container p-0">
<span class="navbar-brand">Shopping List</span>
</div>
</nav>
</header>
<div class="container pt-3">
<h3 class="text-light">Input item yang akan dibeli bawah ini</h3>
<input type="text" id="input-item" class="form-control-lg" placeholder="input...">
<button type="button" id="btn-add-item" onclick="inputL()" class="btn btn-dark btn-lg">add</button>
<div class="form-text ">tekan enter untuk submit</div>
<ul id="list-item">
</ul>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ" crossorigin="anonymous"></script>
</body>
</html>