-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (61 loc) · 2.28 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
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<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">
<title>ariTheDev</title>
<link rel="icon" href="favicon.ico?" type="image/png" />
<link href="https://fonts.googleapis.com/css?family=Reem+Kufi|Roboto:300" rel="stylesheet">
<script src="https://kit.fontawesome.com/ced32ef8cd.js" crossorigin="anonymous"></script>
<!-- <link href="https://use.fontawesome.com/releases/v5.13.1/css/all.css" rel="stylesheet"> -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/themes/cream-turq.css">
<!-- <div class="button" onclick="myFunction(this)">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
<div id="myDropdown" class="dropdown-content">
<a href="#">Million</a>
<a href="#">About</a>
<a href="#">Contact</a>
</div>
</div>-->
</head>
<body>
<main>
<div class="intro">Hello, I'm Dari</div>
<div class="tagline">Full-Stack Developer | Tech Enthusiast | LIfelong Learner | 💻</div>
<div class="tagline">Portfolio coming soon...</div>
<!-- Find your icons from here - https://fontawesome.com/icons?d=gallery&s=brands -->
<div class="icons-social">
<a target="_blank" href="https://github.com/darithedev">
<i class="fab fa-github" aria-hidden="true" title="Github"></i>
<span class="sr-only">Github</span>
<a target="_blank" href="https://www.linkedin.com/in/darimar-caceres/">
<i class="fab fa-linkedin" aria-hidden="true" title="LinkedIn"></i>
<span class="sr-only">LinkedIn</span>
</div>
<!--<script>
function myFunction(x) {
x.classList.toggle("change");
document.getElementById("myDropdown").classList.toggle("show");
}
// Close the dropdown menu if the user clicks menu button
window.onclick = function(event) {
if (!event.target.matches('.button')) {
var dropdowns = document.getElementsByClassName("dropdown-content");
var i;
for (i = 0; i < dropdowns.length; i++) {
var openDropdown = dropdowns[i];
if (openDropdown.classList.contains('change')) {
openDropdown.classList.remove('show');
}
}
}
}
</script>-->
</main>
</body>
</html>