-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path4 Adding the Sections.html
More file actions
58 lines (53 loc) · 1017 Bytes
/
4 Adding the Sections.html
File metadata and controls
58 lines (53 loc) · 1017 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>My Website</title>
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<header>
<h1>Welcome to My Website</h1>
</header>
<nav>
<ul>
<li>Home</li>
<li>Tutorials</li>
<li>Podcasts</li>
</ul>
</nav>
<section>
<article>
<header>
<hgroup>
<h1>Title of Article</h1>
<h2>Subtitle for Article</h2>
</hgroup>
</header>
<p>This is the best article ever!</p>
<footer>
<P>- written by Mohamed Ifah</P>
</footer>
</article>
<article>
<header>
<hgroup>
<h1>Title of Article 2</h1>
<h2>Subtitle for Article 2</h2>
</hgroup>
</header>
<p>This is the second best article ever!</p>
<footer>
<P>- written by Mohamed Ifah</P>
</footer>
</article>
</section>
<aside>
<h4>News</h4>
I have a new website!
</aside>
<footer>
Copyright Mohamed Ifah 2014
</footer>
</body>
</html>