-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (45 loc) · 1.9 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!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">
<title>Document</title>
</head>
<div class="navbar">
<header style="position: fixed; top: auto; background-color: cornflowerblue; width: 100%;">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="portfolio.html">Portfolio</a>
</header >
</div>
<body style="background-color: navajowhite;">
<div style="padding-top: 1%;">
<h1>Sean's portfolio/about me website</h1>
</div>
<div>
<h2 style="border: thick;">Blogging?</h2>
<p>
Well, I don't really do any blogging. I think the point of this part isn't so much to focus on the blogging that I don't do but to see if I am about to set up the body of a paragraph on a page.
Hopefully I am right, because if my grade is based on how much blogging I do and, therefore; have material to talk about, I'm screwed.
</p>
</div>
<div>
<h2>Developing</h2>
<p>
I am currently going through the daytime c# full stack boot camp at Grand Circus. I plan on learning python directly after finishing boot camp.
</p>
</div>
<div>
<h2>Hometown</h2>
<p>
I grew up in Plymouth Michigan, which is a suburb of Detroit. It was your typical white picket fence yuppy suburban town. It is home to the largest high school system in Michigan PCEP, which consisted of 3 full sized high schools on one campus. As as student I would have classes at all 3, it was set up very much like a college campus.
</p>
</div>
</body>
<footer style="width: 100%; bottom: 0px; position: fixed;">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="portfolio.html">Portfolio</a>
</footer>
</html>