-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage2.html
More file actions
29 lines (26 loc) · 1.34 KB
/
page2.html
File metadata and controls
29 lines (26 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Page 2</title>
<meta name="description" content="The webpage created in the lab session of 205CDE week4, continuing the project of week3. The CSS is external, and I will show how one file can be used to change the shape in many pages.">
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<header>
<h2>Hi, my name is Theocharis Ledakis</h2>
<h3>And this is my tiny test page created with HTML5</h3><a href="http://validator.w3.org/check?uri=referer" target="_blank" ><img src="images/html5.png" alt="the html5 logo" /> </a>
</header>
<main>
<article><h2>An article</h2>
<p>This is a paragraph element, and I want to include a cat that is a Troll! <img src="images/trollface2.jpg" alt="a troll face" ></p>
<img src="images/cat-troll.gif" alt="a moving image of a cat trolling the other two" >
<h4>hope you liked it!</h4>
</article>
<article><p>this is another paragraph</p></article>
</main>
<footer>
<a href="http://validator.w3.org/check?uri=referer" target="_blank" ><img src="images/html5_valid.png" alt="the html5 valid logo" /> </a>
</footer>
</body>
</html>