0% found this document useful (0 votes)
19 views1 page

Modelo

Uploaded by

Thiago Chaves
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views1 page

Modelo

Uploaded by

Thiago Chaves
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

DOCTYPE html>
<html lang="pt-br">
<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">
<title>Document</title>

<link rel="stylesheet" href="estilo.css">


<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/axios.min.js"></
script>
</head>
<body>
<header>
<h1>ROUPAS</h1>
</header>
<main>
<section>
<h3>Cadastramento de Roupas</h3>
<article>
Marca: <input type="text" id="txtmarca">
</article>
<article>
Tamanho: <input type="text" id="txttamanho">
</article>
<article>
Cor: <input type="text" id="txtcor">
</article>
<article>
Quantidade: <input type="text" id="txtquantidade">
</article>
<input type="button" value="Cadastrar" onclick="cadastrar()">

<div>
<h3 class="titulo">Roupa Cadastrada</h3>
<table class="table" id="tabela">
<thead>
<tr>
<th scope="col">Id</th>
<th scope="col">Marca</th>
<th scope="col">Tamanho</th>
<th scope="col">Cor</th>
<th scope="col">Quantidade</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>

</section>
</main>
</body>
</html>

You might also like