-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Personal Website</title>
<link rel="stylesheet" href="style.css" />
<script defer src="javascript.js"></script>
</head>
<body>
<nav>
<div id="Name">
<h1>Oscar Lopez</h1>
</div>
<div id="links">
<a class="active" href="#home"> Home</a>
<a href="about.html"> About</a>
<a href="portfolio.html"> Portfolio</a>
<a href="contact.html"> Contact</a>
</div>
</nav>
<main>
<h2>Program Developer</h2>
<section>
<p>
Eager to apply my knowledge to real-world software development
challenges, I am committed to continuous learning and growth as I
begin my career as a programmer.
</p>
<img
class="index-image"
src="https://www.michaelpage.com.au/sites/michaelpage.com.au/files/styles/advice_node_desktop/public/2022-01/Software%20Developer.jpg.webp?itok=FMZ_gBBG"
alt="picture of computer screen with coding on it"
/>
</section>
</main>
</body>
</html>