-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (35 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en-us">
<!-- head contains various background info processed
by the broswer to make the page work -->
<head>
<meta charset="UTF-8">
<!-- lables the tab -->
<title>Home</title>
<!-- link to styling sheet -->
<link rel="stylesheet" href="./cssfiles/main.css"/>
</head>
<body class="bg-pic">
<!-- navigation bar -->
<header class="nav">
<a class="links" href="./index.html">Home</a>
<a class="links "href="./html_files/contact.html">Contact</a>
<a class="links" href="./html_files/about.html">About Me</a>
<a class="links" href="./html_files/blog_main.html">Blog</a>
</header>
<!-- page content - with formatted text paragraph and pictures -->
<main class="mpformat-home">
<h1>Mike Zhang</h1>
<h2>Dev Newbie</h2>
<figure>
<img src="./pics/face.jpg" alt="Profile Pic">
</figure>
<section>
Hi, I'm an aspiring web developer.
Please excuse my rudimentary design and code.
I am in my early stages of learning and
am working hard to improve my skills.
</section>
</main>
</body>
</html>