first commit

This commit is contained in:
天クマ 2026-03-06 09:57:20 -03:00
commit 17b05f7749
4 changed files with 142 additions and 0 deletions

42
src/index.html Normal file
View file

@ -0,0 +1,42 @@
<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>