-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
113 lines (112 loc) · 5.23 KB
/
home.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!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">
<!--Styles-->
<link rel="stylesheet" href="/styles/pages/reset.css">
<link rel="stylesheet" href="/styles/pages/btn-dark-mode.css">
<link rel="stylesheet" href="/styles/pages/style.css">
<link rel="stylesheet" href="/styles/block/header.css">
<link rel="stylesheet" href="/styles/block/main.css">
<link rel="stylesheet" href="/styles/block/about.css">
<link rel="stylesheet" href="/styles/block/skills.css">
<link rel="stylesheet" href="/styles/block/formation.css">
<link rel="stylesheet" href="/styles/block/works.css">
<link rel="stylesheet" href="/styles/block/contact.css">
<link rel="stylesheet" href="/styles/block/footer.css">
<!-- <link rel="stylesheet" href="/styles/block/arrows.css"> -->
<title>Portfolio</title>
<!-- Favicon -->
<link rel="shortcut icon" href="/assets/img/favicon.png" type="image/x-icon">
</head>
<body class="dark-mode">
<header class="header">
<div class="header__menu" data-header>
<ul class="header__links" data-links></ul>
<div class="header__btn-menu" data-btnMenu>
<i class="fa fa-bars" aria-hidden="true"></i>
</div>
<div class="header__btn-menu--close" data-btnMenu-close>
<i class="fa fa-minus" aria-hidden="true"></i>
</div>
</div>
<div class="header__btn">
<button class="btn-switch" data-switch>
<span><i class="fas fa-sun"></i></span>
<span><i class="fas fa-moon"></i></span>
</button>
</div>
</header>
<main class="main">
<div class="main__container" data-main-profile></div>
<div class="about__container" data-container>
<h1 class="about__tittle" data-about-title></h1>
<span class="about__description" data-about-description></span>
</div>
<div class="skills__container skills">
<h1 class="skill__title" data-skills-title></h1>
<div class="skill__cards" data-skill></div>
</div>
<div class="formation__container">
<h1 class="formation__title" data-formation-title></h1>
<div class="formation__items" data-formation></div>
</div>
<div class="skills__container hobbies">
<h1 class="skill__title" data-hobbies-title></h1>
<div class="skill__cards" data-hobbies></div>
</div>
<div class="works__container">
<h1 class="works__title" data-works-title></h1>
<div data-works></div>
</div>
<div class="contact__container">
<h1 class="works__title" data-contact-title></h1>
<div class="form__container">
<form autocomplete="off" class="form__contact" method="post" netlify>
<input class="form--input" type="text" id="name" placeholder="Nombre" maxlength="30" required>
<input class="form--input" type="email" id="mail" placeholder="E-mail" required>
<input class="form--input" type="text" id="asunto" placeholder="Asunto" maxlength="30" required>
<textarea class="form--input" name="" id="textArea" cols="30" rows="10" placeholder="Mensaje" required></textarea>
<input class="work--button" type="submit" value="Enviar">
</form>
<lord-icon
class="form__img"
src="https://cdn.lordicon.com/sdhhsgeg.json"
colors="primary:#0976b5,secondary:#08c3ff"
trigger="loop"
delay="4000">
</lord-icon>
</div>
</div>
<div>
<!-- <div class="arrow__down">
↓
</div> -->
</div>
</main>
<footer data-footer></footer>
<!--Font awesome-->
<script src="https://kit.fontawesome.com/a946beb2ac.js" crossorigin="anonymous"></script>
<!-- Lord icon -->
<script src="https://cdn.lordicon.com/qjzruarw.js"></script>
<!-- ScrollReveal framework -->
<script src="https://unpkg.com/scrollreveal"></script>
<!-- Rellax.min.js -->
<script src="/js/rellax.min.js"></script>
<!-- JS Modules -->
<script type="module" defer src="/js/darkMode.js"></script>
<script type="module" src="/js/block/header.js"></script>
<script type="module" src="/js/block/main.js"></script>
<script type="module" src="/js/block/about.js"></script>
<script type="module" src="/js/block/skills.js"></script>
<script type="module" src="/js/block/formation.js"></script>
<script type="module" src="/js/block/hobbies.js"></script>
<script type="module" src="/js/block/works.js"></script>
<script type="module" src="/js/block/contact.js"></script>
<script type="module" src="/js/block/footer.js"></script>
<script src="/js/block/btnMenu.js"></script>
<script type="module" src="/js/scroll-behavior-controller.js"></script>
</body>
</html>