-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (46 loc) · 1.94 KB
/
index.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<!--Fonts-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap" rel="stylesheet">
<!--Fonts-->
<!--Components-->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="css/footer.css">
<!--Components-->
<!--Only This Page-->
<link rel="stylesheet" href="css/style-home.css">
<!--Only This Page-->
<title>CSS Elements</title>
</head>
<body>
<header>
<h1>CSS Elements</h1>
</header>
<main>
<h2 class="title-page">Olá! Seja bem vindo ao CSS Elements.</h2>
<h3 class="title-page">Últimos Posts</h3>
<section class="posts">
<div class="post">
<a class="title-post" href="posts/border-radius/border-radius.html" target="_blank">Border Radius Previewer!</a>
<h2 class="author-post">Autor: <br> DinoDev </h2>
<div class="line"></div>
<p class="text-post">Faça o elemento Border-Radius de um jeito Fácil!</p>
</div>
<div class="post">
<a class="title-post" href="posts/box-shadow/box-shadow.html" target="_blank">Box-Shadow Previewer!</a>
<h2 class="author-post">Autor: <br> DinoDev </h2>
<div class="line"></div>
<p class="text-post">Faça o elemento Box-Shadow de um jeito Fácil!</p>
</div>
</section>
</main>
<footer>
<h3>Created by: ErickDev.</h3>
<a href="https://github.com/ErickGameDev/" target="_blank">GitHub</a>
</footer>
</body>
</html>