-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (42 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--css-->
<link rel="stylesheet" href="css/style.css">
<!--fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap" rel="stylesheet">
<!--animation-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<!--icon-->
<script src="https://kit.fontawesome.com/075ec74296.js" crossorigin="anonymous"></script>
<title>Monthly CSS #1</title>
</head>
<body>
<header>
<div class="animate__animated animate__fadeInLeftBig">
<p>Monthly CSS #1</p>
<h1>FIXED FOOTER REVEAL FROM BEHIND</h1>
</div>
</header>
<main>
<div class="animate__animated animate__fadeInLeft">
<p>Hi! I'm</p>
<h2><a href="https://github.com/elianadenise/fixedfooterreveal">Elo</a></h2>
<p>
It's January 2023 and I'm studying web development. <br>
Therefore, I try to pass the <a href="https://www.monthlycss.com/">Monthly CSS's challenges</a>. <br>
</p>
<p class="technologies">Technologies: HTML, CSS, SASS.</p>
</div>
<img src="img/fondo.svg" alt="Elo codeando" class="animate__animated animate__fadeInRight">
</main>
<footer>
<p>Coded with <i class="fa-solid fa-xs fa-heart fa-beat"> </i> by <a href="https://www.linkedin.com/in/elianadnavarro/">Elo</a>.</p>
</footer>
</body>
</html>