forked from akshaykhanna/HTML5-CSS-Pratice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Website layout 3 HTML5.html
55 lines (51 loc) · 1.2 KB
/
Website layout 3 HTML5.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>HTML5 Flexible box model</title>
<link rel="stylesheet" href="main2.css"/>
</head>
<body>
<div id="wrapper1">
<header id="top_header"><h1>Brainbolts.in</h1></header>
<nav id="top_menu">
<ul><li>Home</li><li>Android crApps</li><li>Electronic Circuits</li></ul>
</nav>
<div id="new_div">
<section id="main">
<article>
<header>
<hgroup>
<h1>Title of Article</h1>
<h2>Subtitle for Article!</h2>
</hgroup>
</header>
<p>This is the best article eva!</p>
<footer>
<p>- written by Akshay Khanna</p>
</footer>
</article>
<article>
<header>
<hgroup>
<h1>Title of Article 2</h1>
<h2>Subtitle for Article!</h2>
</hgroup>
</header>
<p>This is the second best article eva!</p>
<footer>
<p>- written by Akshay Khanna</p>
</footer>
</article>
</section>
<aside id="ads">
<h4>News</h4>
Ads vads
</aside>
</div>
<footer id="the_footer">
Coprights Brainbolts.in
</footer>
</div>
</body>
</html>