forked from EfrenSanchez/Shopping-app
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
62 lines (52 loc) · 1.79 KB
/
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
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
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-eqUIv="X-UA-Compatible" content="ie=edge">
<!-- Bootswach -->
<link rel="stylesheet" href="https://bootswatch.com/4/simplex/bootstrap.min.css">
<!-- Custom Css -->
<link rel="stylesheet" href="./master.css">
<!-- favicon -->
<link rel = "icono de acceso directo" href = "./img/favicon.ico" type = "image / x-icon">
<link rel = "icon" href = "./img/favicon.ico" type = "image / x-icon" >
<title>Store-App</title>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-light bg-light">
<a class="navbar-brand" href="/index.html">
<img src="./img/shopping_basket.png" width="30" height="30" class="d-inline-block align-top"
alt="logo">
Shopping-App
</a>
</nav>
<!-- Hero -->
<div class="container mt-5">
<!-- Form -->
<div class="row shopping p-5 " id="app">
<div class="col-md-4">
<div class="card">
<div class="card-header">
<h4>Add your product</h4>
</div>
<form id="product-form" class="card-body">
<div class="form-group">
<input type="text" id="product-name" placeholder="Product name" class="form-control">
</div>
<div class="form-group">
<input type="number" id="product-price" step="0.01" placeholder="Product price" class="form-control">
</div>
<input type="submit" value="Save" class="btn btn-danger btn-block">
</form>
</div>
</div>
<!-- Outputs -->
<div class="col-md-8 shopping__products" id="product-list"></div>
</div>
</div>
<!-- Scripts -->
<Script src="./app.js"></Script>
</body>
</html>