-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (64 loc) · 2.7 KB
/
index.html
File metadata and controls
65 lines (64 loc) · 2.7 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
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> -->
<link href="https://fonts.googleapis.com/css?family=Oswald:400" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>AF Portfolio</title>
</head>
<body>
<nav>
<div id="main_menu">
<div class="logo_area">
<a href="#"><img src="laptop_logo.png" width="135.5px" height="119.5"></a>
</div>
<div class="inner_main_menu">
<ul>
<li> <a href="#">Home</a></li>
<li> <a href="#name">Name</a></li>
<li> <a href="#contact">Contact</a></li>
<li> <a href="#bio">Bio</a></li>
<li> <a href="#">Skills</a></li>
<li> <a href="#projects">PROJECTS</a></li>
</ul>
</div>
</div>
</nav>
<div class="text-body">
<section class="name" id="name">
<p>
Hi, I'm Adam and currently a student in a Fullstack Developer Bootcamp<br>
Python - HTML-CSS - Javasript
</p>
</section>
<section class="contact" id="contact">
<p>
Please contact me at: <span style="color:blue"><u>adamfraley@gmail.com</u></span>
</p>
</section>
<section class="bio" id="bio">
<p>
Interesting times call for interesing and new ideas.
I have worked in many fields and have a diverse education as well.
I served in the military, managed a small-business trucking company,
and worked managing construction projects. My education includes an
undergraduate degree as well as graduate work.
With these changing times my focus has changed to becoming a developer.
</p>
</section>
<section class="projects" id="projects">
<p>
I completed a mini-capstone project in python giving users the ability
to query an economic indicator data over time with the option
to query a stock price or another economic indicator over the same time
with a graphical output of the selected data over a shared time axis allowing the
user to interpret any correlation.
</p>
</section>
</div>
<footer><a href="mailto:adamfraley@gmail.com">adamfraley@gmail.com</a></footer>
</body>
</html>