-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (121 loc) · 4.84 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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!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">
<title>Coco</title>
<link rel="icon" type="icon/png" href="./img/cocoLogo.png">
<!--FONT AWESOME para los icons-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">
<!--FONT-->
<link href="https://fonts.googleapis.com/css2?family=Arimo:wght@400;600&display=swap" rel="stylesheet">
<!-- CUSTOM CSS -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container"> <!--Clase Container, donde va la mayoria de nuestro codigo-->
<nav class="nav-main">
<img src="/img/cocoLogo.png" alt="COCO LOGO" class="nav-brand">
<ul class="nav-menu">
<li>
<a href="#aboutMe">About Me</a>
</li>
<li>
<a href="#myProjects">My Projects</a>
</li>
<li>
<a href="#contactMe">Contact Me</a>
</li>
</ul>
</nav>
<hr>
<!--SHOWCASE-->
<header class="showcase">
<div class="contenido">
<h2>¡Hello, I'm Coco!</h2>
<p>An introverted student, a pseudo programmer, a skid</p>
<div class="coco logo"></div>
<img src="./img/coco-unscreen.gif" alt="cocogif">
</div>
<a href="#aboutMe" class="btn">Read More<i class="fas fa-angle-double-right"></i></a>
</div>
</header>
<div class="Gopher">
<img src="./img/Gopher.gif" alt="#">
<img src="./img/Gopher.gif" alt="#">
<img src="./img/Gopher.gif" alt="#">
<img src="./img/Gopher.gif" alt="#">
<img src="./img/Gopher.gif" alt="#">
<img src="./img/Gopher.gif" alt="#">
<img src="./img/Gopher.gif" alt="#">
<img src="./img/Gopher.gif" alt="#">
</div>
<!--about me-->
<section class="about-me" id="aboutMe">
<div class="content">
<h2>About Me</h2>
<!-- lorem 20 -->
<p>¡Hi!, My name is Angel Gabriel, but you can call me Coco. I'm a student and a pseudo programmer from Dominican Republic. On my proyects, you will see some stuff made in Golang, Arduino, React, Typescript, Angular and more shit</p>
</div>
</section>
<div class="title">
<h1>My Projects</h1>
</div>
<!--My Projects-->
<div class="my-projects" id="myProjects">
<div>
<img src="./img/ComingSoon.gif" alt="comingsoon">
<h3>Coming Soon</h3>
<p>Coming Soon</p>
<a href="#">Learn More <i class="fas fa-angle-double-right"></i></a>
</div>
<div>
<img src="./img/ComingSoon.gif" alt="comingsoon">
<h3>Coming Soon</h3>
<p>Coming Soon</p>
<a href="#">Learn More <i class="fas fa-angle-double-right"></i></a>
</div>
<div>
<img src="./img/ComingSoon.gif" alt="comingsoon">
<h3>Coming Soon</h3>
<p>Coming Soon</p>
<a href="#">Learn More <i class="fas fa-angle-double-right"></i></a>
</div>
<div>
<img src="./img/ComingSoon.gif" alt="comingsoon">
<h3>Coming Soon</h3>
<p>Coming Soon</p>
<a href="#">Learn More <i class="fas fa-angle-double-right"></i></a>
</div>
</div>
<section class="social" id="contactMe">
<p>Contact Me</p>
<div class="links">
<a href="https://www.facebook.com/zuriel.perez.710/videos/134896911738152">
<i class="fab fa-facebook"></i>
</a>
<a href="https://twitter.com/Grabrahama">
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.instagram.com/gabriel_dotcom03/">
<i class="fab fa-instagram"></i>
</a>
<a href="https://github.com/Grabrahama">
<i class="fab fa-github"></i>
</a>
<a href="https://discord.gg/BZNFe5m562">
<i class="fab fa-discord"></i>
</a>
</div>
</section>
</div>
<footer class="footerx">
<h3>Miqui Mamaguevaso</h3>
</footer>
<!--SCROLL REVEAL-->
<script src="https://unpkg.com/scrollreveal"></script>
<!--CUSTOM JS-->
<script src="main.js"></script>
</body>
</html>