-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
39 lines (37 loc) · 1.71 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MyPortfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<nav>
<h1 class="title">About Me</h1>
<ul>
<li><a href="index.html">Main</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="resume.html">My Resume</a></li>
</ul>
<img src="images/logo.png" class="logo" alt="">
</nav>
<div class="text-box">
<h3>My name's Armani Romero and I'm 21 years old. </h3>
<h1 style="font-size: 100px; line-height: 90px; margin-right: 30%;">I am mainly a Frontend Developer</h1>
<h3 style="margin-right: 30%;">although I've worked on Backend in some occasions.</h3>
<br>
<h3 style="font-size: 20px; margin-right: 50%;">My two biggest passions are CODING and MAKING MUSIC.</h3>
</div>
<div class="profile-pic">
<img src="images/profilepic.jpg" alt="">
</div>
<div class="social-icons">
<a href="https://www.linkedin.com/in/armani-buenrostro/" target="_blank"><img src="images/linkedin.png" alt=""></a>
<a href="https://github.com/armanirmr" target="_blank"><img src="images/github.png" alt=""></a>
<a href="https://www.twitter.com/kait0kidd" target="_blank"><img src="images/twitter.png" alt=""></a>
</div>
</div>
</body>
</html>