-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.53 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
<!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">Hello there!</h1>
<ul>
<li><a href="about.html">About Me</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">
<p>MY NAME IS</p>
<h1>ARMANI</h1>
<h3>I'M A SOFTWARE ENGINEERING STUDENT</h3>
<div class="row">
<a href="resume.html">Take a Look At My Resume</a>
<a href="contact.html">Let's Connect! <span>→</span></a>
<span>You Are Already Here. <br> Let's Work Together.</span>
</div>
</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>