-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (43 loc) · 1.5 KB
/
index.html
File metadata and controls
46 lines (43 loc) · 1.5 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home</title>
<!-- <meta charset=”utf-8”> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<!--[if lt IE 9]>
<script src=”http://html5shim.googlecode.com/svn/trunk/html5.js”>
</script>
<![endif]-->
</head>
<body>
<div id="wrapper">
<header><h1>David Orona's Portfolio</h1></header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="hobbies.html">Hobbies</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<img src="Images/profile.jpg" alt="David Orona" height="300" width="200" class="floatleft">
<p>Welcome to my personal webpage! Within this site, you shall find out:</p>
<ul class="bulleted-list">
<li>Details about me, from an experience perspective</li>
<li>All about my class and personal projects</li>
<li>Some of the activities and hobbies I am involved with</li>
<li>Contact information</li>
</ul>
<p>Some of the details are a bit complicated, but overall I hope you enjoy!</p>
</main>
<footer>
<p>Address: 5916 Sutton Place #4 Urbandale, IA 50322</p>
<p>Email: <a href="mailto:OronaDavidJ@JohnDeere.com">OronaDavidJ@JohnDeere.com</a></p>
<p>Phone: <a href="tel:1-319-529-8647">(319) 529-8647</a></p>
</footer>
</div>
</body>
</html>