garatujas/projetos/termos-tecnicos/src/index.html

42 lines
No EOL
1.3 KiB
HTML

<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Busca de Termos</title>
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=crossword" />
</head>
<body>
<nav>
<img src="./images/logo.svg" id="logo">
<h1>Busca de Termos</h1>
<button>Busca</button>
<button>Banana</button>
</nav>
<main>
<h2>Pesquisa</h2>
<div id="search">
<input type="text" name="" id="" placeholder="Digite aqui os termos da pesquisa">
<button>Pesquisar</button>
</div>
<table>
<thead>
<tr>
<th>Termo</th>
<th>Sigla</th>
<th>Definição</th>
<th>Ações</th>
</tr>
</thead>
<tbody>
<tr>
<th>Teste</th>
<th>Teste</th>
<th>Teste</th>
<th>Teste</th>
</tr>
</tbody>
</table>
</main>
</body>
</html>