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

Htmlcss

This document is an HTML template for a customer registration form titled 'Cadastro de Clientes'. It includes fields for name, email, and phone number, along with a table to display registered customers. The form is designed to be interactive with a linked stylesheet and JavaScript file for functionality.
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)
2 views1 page

Htmlcss

This document is an HTML template for a customer registration form titled 'Cadastro de Clientes'. It includes fields for name, email, and phone number, along with a table to display registered customers. The form is designed to be interactive with a linked stylesheet and JavaScript file for functionality.
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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cadastro de Clientes</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Cadastro de Clientes</h1>
<form id="formCliente">
<label for="nome">Nome:</label>
<input type="text" id="nome" required>

<label for="email">Email:</label>
<input type="email" id="email" required>

<label for="telefone">Telefone:</label>
<input type="tel" id="telefone" required>

<button type="submit">Adicionar Cliente</button>


</form>

<h2>Clientes Cadastrados</h2>
<table id="tabelaClientes">
<thead>
<tr>
<th>Nome</th>
<th>Email</th>
<th>Telefone</th>
</tr>
</thead>
<tbody>
<!-- Os dados dos clientes aparecerão aqui -->
</tbody>
</table>
</div>

<script src="script.js"></script>
</body>
</html>

You might also like