-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTest.html
More file actions
82 lines (78 loc) · 2.12 KB
/
Copy pathTest.html
File metadata and controls
82 lines (78 loc) · 2.12 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
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>First HTML 5 Document</title>
</head>
<body>
<header>
<!--
Any Text comment
multi line
-->
<h1>HTML 5 document</h1>
</header>
<style type ="text/css">
body {
background-color : #ccc
}
</style>
<article>
<p align="center">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Maecenas vitae elit et metus luctus facilisis. In efficitur velit et lacus rutrum sagittis.
Aliquam porta feugiat egestas. Phasellus congue neque at tellus sagittis, vel commodo tortor lobortis.
Proin ac suscipit erat. Maecenas ut magna lectus. Nulla tempus iaculis est id dapibus.
Donec sed rutrum sapien. Etiam luctus lectus in sapien porttitor, eget dapibus eros accumsan.
Nam arcu ipsum, volutpat vel lectus a, ornare accumsan velit.
</p>
<img style src="http://webcoma.ru/images/html.jpg">
</img>
</article>
<article>
<h1> List Demo</h1>
<ul>
<li>Item #1</li>
<li>Item #2</li>
<li>Item #3</li>
</ul>
<iframe src="https://ru.wikipedia.org/wiki/AJAX">
</iframe>
</article>
<style type="text/css">
table{
border:2px solid;
border-color: aqua;
}
</style>
table
<table>
<thead>
<tr>
<th>ldsijfgijsdgf</th>
<th>posdkfgpoksdg</th>
<th>;odskfpogsdg</th>
</tr>
</thead>
<tbody>
<td>dfsghsdifh</td>
<td>sdfijsjdfg</td>
<td>sfpopsdkpofg</td>
</tbody>
</table>
<form action="mailto:romandrevs@gmail.com" method="post" enctype="text/plain">
<div>
<input type="text" name="uname" value="" placeholder="Input your name"
</div>
</form>
<section>
<header>
<h2>Section #2 header</h2>
</header>
<div>Section</div>
</section>
<footer>
<div>Copyright 2016 </div>
</footer>
</body>
</html>