-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 828 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (28 loc) · 828 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>My first webpage</title>
<meta name="og:title" content=""My first website">
<link href="https://multimedia.report/images/classes/webskills/css/baby-blog.css" rel="stylesheet">
</head>
<body>
<header>
<h1>Monica Leslie</h1>
<h2>My first web page</h2>
</header>
<nav>
<ul>
<li>Home</li>
<li>Blog</li>
<li>Portfolio</li>
<li>Contact</li>
</ul>
</nav>
<article>
<h2> Photos from my last vacation</h2>
<img src="http://c2.staticflickr.com/6/5159/13983804179_a37a227ed1_z.jpg" width="100%" height="auto" alt="red rock in the American Southwest">
<p>Here is a description of this photograph</p>
</article>
</body>
</html>