-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
71 lines (63 loc) · 2.71 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- Uncomment the next line to enable responsive design -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Angel G.</title>
<!-- Use a relative path for the CSS file -->
<link rel="stylesheet" href="css-styles.css">
<!-- Avoid using absolute paths on local machine, use a relative path or a web URL instead -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Merriweather|Montserrat|Sacramento">
<link rel="icon" href="favicon.ico">
</head>
<body>
<!-- Top container with clouds, title, and an image of a mountain -->
<div class="top-container">
<img class="top-cloud" src="cloud.png" alt="cloud">
<div class="title-text">
<h1>I'm Angel.</h1>
<h2>a <span class="pro">pro</span>grammer.</h2>
</div>
<img class="bottom-cloud" src="cloud.png" alt="cloud">
<img class="mountain" src="mountain.png" alt="mountain-img">
</div>
<!-- Middle container with profile, skills, and contact information -->
<div class="middle-container">
<div class="profile">
<h2>Hello.</h2>
<p class="intro">I am a computer science graduate and a Web Developer.</p>
</div>
<hr>
<!-- Skills section with descriptions -->
<div class="skills">
<h2>My Skills.</h2>
<div class="skill-row">
<img src="robotic-arm.png" alt="robotic-arm-img">
<h3>Coding & Debugging</h3>
<p>My journey in learning about computer programming languages started in my teen years when my curiosity grew in the field of electronic circuits & how they interact with computational scripts.</p>
</div>
<div class="skill-row"
>
<img class="debugging" src="debugging.png" alt="code">
<h3>Efficient Solution Design</h3>
<p>As more and more potential robotic system components emerge, it is more important than ever to be able and know how to efficiently develop automated solutions.</p>
</div>
</div>
<hr>
<!-- Contact me section with a link to email -->
<div class="contact-me">
<h2>Get In Contact</h2>
<p class="contact-message">Like this carefully curated site?</p>
<a class="btn" href="mailto:v4rqzpv27z@privaterelay.appleid.com">CONTACT ME</a>
</div>
</div>
<!-- Bottom container with links to social profiles and copyright information -->
<div class="bottom-container">
<a class="footer-link" href="https://www.linkedin.com/in/arivera2098">LinkedIn</a>
<a class="footer-link" href="https://profile.indeed.com/p/angelgabrielr-q990zc3">Indeed</a>
<a class="footer-link" href="https://github.com/SadJ0k3r">GitHub</a>
<p class="copyright">Angel G @ ProfilePeak©</p>
</div>
</body>
</html>