-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.77 KB
/
index.html
File metadata and controls
39 lines (39 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles.css">
<title>Main Page</title>
</head>
<body>
<header><h1 class="no-margin">Mark's World</h1></header>
<div>
<nav>
<ul>
<li><a href="index.html">Main</a></li>
<li><a href="aboutme.html">About Me</a></li>
<li><a href="contactme.html">Contact Me</a></li>
</ul>
</nav>
<main>
<section>
<span class="banner">This page is all about Me</span>
<img class="round-portrait" src="images/me.jpg">
</section>
<article class="width-80-percent">
<p>Over the course of this class I will make a website about things that interest me</p>
<h3>Brief Bio:</h3>
<p class="width-80-percent">I am a software sales engineer, and a resident of the Bronx, New York. I have a
very long background in server side programming in Java. However, I have next to
no skills in front end development, which is why I am in this class.
</p>
<p class="width-80-percent">This assignment is on cascading stylesheets. This is a topic I have always struggled with when
tinkering with the web, because I had no formal training, and I worked with the legacy CSS.
Html 5 and simplified CSS is much better.
</p>
</article>
</main>
</div>
</body>
</html>