-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbotoes.html
75 lines (72 loc) · 2.91 KB
/
botoes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Wesley Victor Pereira Silva" />
<meta name="description"
content="Demonstração de estilos de botões utilizando HTML e CSS. Saiba como criar botões com diferentes estilos e tamanhos." />
<meta name="keywords" content="botões, estilos de botões, HTML, CSS, design de botões" />
<title>Botões</title>
<link rel="stylesheet" href="normalize.css" />
<link rel="stylesheet" href="estilo.css" />
</head>
<body>
<header class="main-header">
<nav class="main-nav">
<a href="#"><img src="img/perfil.png" alt="Wesley Victor Pereira Silva" class="perfil-img" /></a>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="tipografia.html">Tipografia</a></li>
<li><a href="cards.html">Cards</a></li>
<li><a href="listas.html">Listas</a></li>
<li><a href="formulario.html">Formulário</a></li>
<li><a href="botoes.html">Botões</a></li>
<li><a href="tabelas.html">Tabelas</a></li>
</ul>
</nav>
</header>
<main class="main">
<h1>My Components</h1>
<article class="highlight">
<h2>Botões</h2>
<p>
Os inputs (entrada de dados) permitem que o usuário interaja com a
aplicação ou site, inserindo conteúdo e dados de forma ativa.
</p>
<p>
Normalmente, inputs são usados em formulários, mas não se limitam a
isso, pois podem ser utilizados como links com a aparência de botões.
</p>
</article>
<section>
<div class="row">
<article>
<h3>Botão normal</h3>
<button class="btn">Button</button>
<button class="btn btn-big">Button</button>
</article>
<article>
<h3>Botão outline</h3>
<button class="btn btn-stroke">Button</button>
<button class="btn btn-big btn-stroke">Button</button>
</article>
</div>
</section>
<section>
<div class="row">
<article>
<h3>Botão full</h3>
<button class="btn btn-full">Button</button>
<button class="btn btn-big btn-full">Button</button>
</article>
<article>
<h3>Botão full outline</h3>
<button class="btn btn-stroke btn-full">Button</button>
<button class="btn btn-big btn-stroke btn-full">Button</button>
</article>
</div>
</section>
</main>
</body>
</html>