-
Notifications
You must be signed in to change notification settings - Fork 35
/
html.block.html
41 lines (41 loc) · 1.08 KB
/
html.block.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
<!DOCTYPE html>
<html dir="ltr" lang="en-US">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Размеры блочных элементов</title>
<link rel="profile" href="https://gmpg.org/xfn/11"/>
<link rel="shortcut icon" href="https://anton.shevchuk.name/favicon.ico"/>
<link rel="stylesheet" href="css/styles.css"/>
<style>
#block {
width: 100px;
height: 100px;
border: 1px solid #456;
padding: 10px;
margin: 10px;
}
</style>
</head>
<body>
<header>
<h1>О размерах блочных элементов</h1>
<h2>Во избежания проблем в будущем</h2>
</header>
<main>
<article>
<div id="block">
#block
</div>
</article>
</main>
<aside>
<nav>
<a href="index.html" title="go back" rel="prev">Back</a>
</nav>
</aside>
<footer>
© <a href="https://anton.shevchuk.name/jquery-book/">jQuery for beginners</a>
</footer>
</body>
</html>