-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
35 lines (33 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles.css">
<title>Rodrigo Morales</title>
</head>
<body>
<header class="header">
<h1 class=" logo">Rodrigo Morales</h1>
<nav class="navbar">
<ul>
<a href="index.html">Home</a>
<a class="active" href="#">About</a>
<a href="services.html">Services</a>
<a href="contact.html">Contact</a>
<a href="portfolio.html">Portfolio</a>
<a href="statsforthenerds.html">Stats for the Nerds</a>
</ul>
</nav>
</header>
<section class="about">
<div class="about-section">
<p>My name is Rodrigo Morales. I am based in New Jersey. I love to travel and learn new languages. </p>
<p>Other hobbies of mine are learning new web development technologies. I am currently working on a Raspberry PI docker container for self hosting my discord clone app.</p>
</div>
</section>
<footer>
<p class="last-updated">Last Updated: <span></span></p>
</footer>
</body>
</html>