forked from acekyrin/mmc3260-s14-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
3-html-wireframe.html
executable file
·61 lines (47 loc) · 1.98 KB
/
3-html-wireframe.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
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<title>Exercise 3: HTML wireframe</title>
<meta charset="UTF-8">
<meta name="description" content="A basic HTML layout styles with CSS.">
<meta name="keywords" content="HTML,CSS,layout,wireframe,mmc3260">
<meta name="author" content="Dave Stanton">
<link rel="stylesheet" type="text/css" href="css/layout.css">
</head>
<body>
<header>
<h1>Lauren Flannery: Freelance Writer</h1>
</header>
<nav>
<a href="index.html">Home</a> <!--I'm assuming my links are broken because I'm doing this on a fork, and not my actual index site. I'll just copy all this to my index site and it should work, right?-->
<a href="about.html">My Bio</a>
<a href="clips.html">My Published Clips</a> <!-- I haven't created these pages yet -->
<a href="resume.html">My Resume</a>
<a href="contact.html">Contact</a>
</nav>
<body>
<div id="wrapper">
<article>
<figure>
<img src="img/profile2014.jpg"
alt="Lauren Flannery"
title="Lauren Flannery 2014" />
<figcaption> This is my caption</figcaption>
</figure>
<section>
<h2>This is my site</h2> <!--I haven't thought about what words I want on this page, so right now I'm not going to put anything.-->
<p>This is my body paragraph</p>
</section>
</article>
</div>
</body>
<footer>
<p>Copyright of Lauren Flannery 2014</p>
<a href="index.html">Home</a>
<a href="about.html">My Bio</a>
<a href="clips.html">My Published Clips</a>
<a href="resume.html">My Resume</a>
<a href="contact.html">Contact</a>
</footer>
</body>
</html>