-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (51 loc) · 2.14 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="styles.css" rel="stylesheet">
<title>Блочная верстка в HTML5</title>
</head>
<body>
<div id="header">
<h1>MySyte.com - Сайт о Lorem Ipsum</h1>
<div id="nav">
<ul>
<li><a href="#">Главная</a></li>
<li><a href="#">Блог</a></li>
<li><a href="#">Форум</a></li>
<li><a href="#">Контакты</a></li>
<li><a href="#">О сайте</a></li>
</ul>
</div>
</div>
<div class="wrapper">
<div id="sidebar1" class="aside">
<h2>The standard Lorem Ipsum passage</h2>
<p>"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt
ut labore et dolore magna aliqua..."</p>
</div>
<div id="sidebar2" class="aside">
<h2>1914 translation by H. Rackham</h2>
<p>It is a long established fact that a reader will be distracted by the readable
content of a page when looking at its layout.</p>
<h3>Options</h3>
<ul>
<li>Item1</li>
<li>Item2</li>
<li>Item3</li>
</ul>
</div>
<div id="article">
<h2>What is Lorem Ipsum?</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry...</p>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of
classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock,
a Latin professor at Hampden-Sydney College in Virginia...</p>
</div>
</div>
<div id="footer">
<p>Contacts: [email protected]</p>
<p>Copyright © MySyte.com, 2016</p>
</div>
</body>
</html>