-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (54 loc) · 2.9 KB
/
index.html
File metadata and controls
58 lines (54 loc) · 2.9 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
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en-US"> <!--<![endif]-->
<!--if you're using IE what is wrong with you?!!-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Julio | Full-Stack Developer</title>
<meta name="description" content="practice portfolio">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class = "sticky">
<header>
<div id = "headerWrapper">
<div id = "mainLogo">Julio Sanchez</div>
<nav id = "menu">
<ul>
<li><a class = "current" href = "index.html">About</a></li>
<li><a href = "portfolio.html">Portfolio</a></li>
<li><a href = "contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!--START OF MAIN CONTENT-->
<div id = "mainContentWrapper">
<div id = "aboutMeWrapper">
<h1 class = "aboutMe">About Me</h1>
<img id = "mainImage" src="assets/images/julioBBQ.jpg" alt="Photo of me">
<p>I love to code because I enjoy the challenge and the ability of being able to create something right in front of me.
I can make what I see on the screen do anything I tell it if I just find the right commands.
I taught myself HTML, CSS and a touch of JavaScript by using online resources.</p>
<p>I knew I wanted to become better at coding so I joined the SMU Full Stack Developer program to take me to the next level.
I’m looking forward to being tested and learning new technologies.</p>
<p>My goal is to combine my previous experience in the military and law enforcement to develop software that makes people safer.</p>
<p>In my spare time I enjoy spending time with my family, working out and making YouTube videos!</p>
</div>
</div>
</div> <!--END OF STICKY FOOTER-->
<!--START OF FOOTER-->
<div id = "outerFooter">
<footer>
copyright ©
</footer>
</div>
</body>
</html>