-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomponents.html
More file actions
65 lines (62 loc) · 1.71 KB
/
Copy pathcomponents.html
File metadata and controls
65 lines (62 loc) · 1.71 KB
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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Componentes</title>
<link rel="icon" href="Logo.svg" />
<meta name="description" content="Framework é um projeto em construção" />
<meta name="keywords" content="Framework, HTML, CSS, Javascript" />
<meta name="robots" content="index,follow" />
<link rel="stylesheet" href="style.css" />
<style>
:root {
--main-color: #242424;
--bg-color: #1b1b1b;
--accent-color: white;
--contrast-color: #111111;
}
</style>
</head>
<body>
<header>
<nav>
<a class="nav-brand" href="index.html">
<h1>Framework</h1>
</a>
<ul class="nav-items">
<li><a href="#">Features</a></li>
<li><a href="components.html">Components</a></li>
<li><a href="#">Showcase</a></li>
<li><a href="#">Pricing</a></li>
</ul>
<a class="nav-buttons" href="#"><button>Get started</button></a>
</nav>
</header>
<main>
<h1>Components</h1>
<section>
<h2>Buttons</h2>
<button class="btn-1">Button</button>
<button class="btn-2">Button 2</button>
</section>
<section>
<h2>Text</h2>
<ul>
<li>
<h1>Heading 1</h1>
</li>
<li>
<h2>Heading 2</h2>
</li>
<li>
<h3>Heading 3</h3>
</li>
<li>
<p>Paragraph</p>
</li>
</ul>
</section>
</main>
<script src="scripts/app.js"></script>
</body>
</html>