feat(index.html)finalizando formulário na parte do html

This commit is contained in:
wellington carlos 2022-11-10 23:09:58 -03:00
parent e7f704f8e7
commit 5256afe230
3 changed files with 43 additions and 0 deletions

43
index.html Normal file
View File

@ -0,0 +1,43 @@
<!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="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="..style/style.css">
<link rel="stylesheet" href="..script/script.js" defender>
<title>Document</title>
</head>
<body>
<main>
<section class="shopiing-container">
<h2 class="shopping-title"></h2>
<form class="shoppinh-form">
<div class="shopping-form-inputs">
<div class="shopping-form-item-wraper">
<label class="shopping-form-label" for="item-name">item name</label>
<input class="shopping-form-inputs" type="text" name="item-name" id="item-name">
</div>
<div class="shopping-form-quantity-wraper">
<button class="shopping-form-quantity-button shopping-form-decrement-button" type="button"></button>
<input type="text" name="item-quantity" value="1" disabled>
<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>
</section>
</main>
</body>
</html>

0
script/script.js Normal file
View File

0
style/style.css Normal file
View File