2022-11-09 21:17:11 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
|
|
<html lang="pt-br">
|
|
|
|
<head>
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com"/>
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/>
|
|
|
|
|
|
|
|
<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>Shopping List</title>
|
|
|
|
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet"/>
|
2022-11-10 00:21:08 +00:00
|
|
|
|
2022-11-10 18:20:28 +00:00
|
|
|
<link rel="stylesheet" href="./styles/main.css"/>
|
2022-11-09 21:17:11 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2022-11-09 21:30:11 +00:00
|
|
|
<main>
|
|
|
|
<section class="shopping-container">
|
|
|
|
<h2 class="shopping-title">
|
|
|
|
Shopping List
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<form class="shopping-form">
|
|
|
|
<div class="shopping-form-inputs">
|
|
|
|
<div class="shopping-form-item-wrapper">
|
|
|
|
<label class="shopping-form-label" for="item-name">Item Name</label>
|
|
|
|
<input class="shopping-form-item-input" type="text" name="item-name" id="item-name"/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="shopping-form-quantity-wrapper">
|
|
|
|
<button class="shopping-form-quantity-button shopping-form-decrement-button" type="button"></button>
|
2022-11-10 00:21:08 +00:00
|
|
|
<input class="shopping-form-quantity-input" type="text" name="item-quantity" value="1" disabled/>
|
2022-11-09 21:30:11 +00:00
|
|
|
<button class="shopping-form-quantity-button shopping-form-increment-button" type="button"></button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<button class="shopping-form-submit-button" type="submit">Add to list</button>
|
|
|
|
</form>
|
2022-11-10 04:09:12 +00:00
|
|
|
|
|
|
|
<div class="shopping-result">
|
|
|
|
<div class="shopping-result-head">
|
|
|
|
<strong>Item</strong>
|
|
|
|
<strong>Quantity</strong>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<ul class="shopping-items"></ul>
|
|
|
|
</div>
|
2022-11-09 21:30:11 +00:00
|
|
|
</section>
|
|
|
|
</main>
|
2022-11-10 04:09:12 +00:00
|
|
|
|
2022-11-10 18:20:28 +00:00
|
|
|
<script src="./scripts/app.js"></script>
|
2022-11-09 21:17:11 +00:00
|
|
|
</body>
|
|
|
|
</html>
|