This repository has been archived by the owner on Jul 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
130 lines (123 loc) · 5.52 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
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<title>Armando Graterol | Web Developer</title>
</head>
<body id="home">
<!-- HEADER -->
<header>
<nav class="header__navbar">
<a href="#skills">Skills</a>
<a href="#projects">Projects</a>
<a href="#contact" class="navbar__contact">Contact Me</a>
<a href="index-es.html" class="navbar__language">Change to Spanish(Español)</a>
</nav>
<div class="header__hero-section">
<h1>Armando Graterol</h1>
<h2>I'm a <span class="hero-section__job">Web Developer</span></h2>
<p>Currently working for: <a href="https://clichead.com/"><img src="img/clichead.svg" alt="Clichead"></a></p>
</div>
</header>
<main>
<section class="main__skills-section" id="#skills">
<h3>Skills</h3>
<ul class="skills-section__skill-list">
<li><img src="img/html.svg" alt="HTML Logo">HTML</li>
<li><img src="img/css.svg" alt="CSS Logo"> CSS</li>
<li><img src="img/bootstrap.svg" alt="Bootstrap Logo"> Bootstrap</li>
<li><img src="img/sass.svg" alt="SASS Logo"> SASS</li>
<li><img src="img/javascript.svg" alt="Javascript Logo"> Javascript</li>
<li><img src="img/jquery.svg" alt="jQuery Logo"> jQuery</li>
<li><img src="img/react.svg" alt="ReactJS Logo"> React</li>
<li><img src="img/redux.svg" alt="Redux Logo"> Redux</li>
<li><img src="img/node.svg" alt="NodeJS Logo"> NodeJS</li>
<li><img src="img/wordpress.svg" alt="Wordpress Logo"> Wordpress</li>
</ul>
</section>
<section class="main__projects-section" id="projects">
<h3>Projects</h3>
<ul class="projects-section__project-list">
<li class="project-list__project">
<a href="https://github.com/ArmandoGraterol/resume-design">
<div class="project__overlay"></div>
<div class="project__content">
<h4>Resume Website</h4>
<ul class="content__tech-list">
<li>Bootstrap</li>
<li>SASS</li>
</ul>
</div>
<img src="img/resumeDesign.png" alt="Resume Design">
</a>
</li>
<li class="project-list__project">
<a href="https://github.com/ArmandoGraterol/shopping-list">
<div class="project__overlay"></div>
<div class="project__content">
<h4>Shopping List App</h4>
<ul class="content__tech-list">
<li>React</li>
<li>Redux</li>
<li>NodeJS</li>
<li>Express</li>
<li>PostgreSQL</li>
</ul>
</div>
<img src="img/shoppinglist.png" alt="Shopping List App">
</a>
</li>
<li class="project-list__project">
<a href="https://github.com/ArmandoGraterol/coin-monitor">
<div class="project__overlay"></div>
<div class="project__content">
<h4>Coin Monitor</h4>
<ul class="content__tech-list">
<li>React</li>
<li>Cryptocompare API</li>
</ul>
</div>
<img src="img/coinmonitor.png" alt="Coin Monitor">
</a>
</li>
<li class="project-list__project">
<a href="https://github.com/ArmandoGraterol/chat">
<div class="project__overlay"></div>
<div class="project__content">
<h4>Chat App</h4>
<ul class="content__tech-list">
<li>React</li>
<li>Redux</li>
<li>NodeJS</li>
<li>Websockets</li>
</ul>
</div>
<img src="img/chat.png" alt="Chat App">
</a>
</li>
</ul>
</section>
</main>
<!-- FOOTER -->
<footer>
<h2>Contact me</h2>
<div class="contact" id="contact">
<a class="footer__contact-links" href="mailto:[email protected]">
Email
</a>
<a class="footer__contact-links" href="https://www.linkedin.com/in/armandograterol">
Linkedin
</a>
<a class="footer__contact-links" href="https://github.com/ArmandoGraterol">
Github
</a>
</div>
<p>Ⓒ Made by me - 2018</p>
</footer>
</body>
</html>