-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
117 lines (117 loc) · 4.33 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<title>
Title
</title>
</head>
<body>
<div class="row">
<h1>The first page</h1>
<div id="message"></div>
<button id="login-button">SignIn</button>
</div>
<div class="row">
<div class="outer-wrapper">
<h2 class="chapters">Forms</h2>
<form action="https://yandex.ru/search/">
<div class="form-element"><input type="text" name="text"></div>
<div class="form-element"><input type="radio" name="newwindow" value="1"> <span>In new window</span></div>
<div class="form-element"><input type="radio" name="newwindow" value="0"> <span>In that window</span></div>
<div class="form-element"><input type="submit" value="Search"></div>
</form>
</div>
<div class="outer-wrapper">
<h2 class="chapters">Paragraphs</h2>
<p><b>Lorem ipsum</b> was conceived as filler text,
<u>formatted</u> in a certain way to enable the
presentation of graphic elements in documents,
without the need for formal copy.
Using <b><i>Lorem Ipsum</i></b> allows designers to put
together layouts and the form of the content
before the content has been created, giving
the design and production process more freedom. <a href="https://getlorem.com/">See more...</a></p>
</div>
<div class="outer-wrapper">
<h2 class="chapters">Headers</h2>
<h1>Header 1</h1>
<h2>Header 2</h2>
<h3>Header 3</h3>
<h4>Header 4</h4>
<h5>Header 5</h5>
<h6>Header 6</h6>
</div>
<div class="outer-wrapper">
<h2 class="chapters">Lists</h2>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<li>Item 5</li>
</ul>
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<li>Item 5</li>
</ol>
</div>
</div>
<div class="row">
<div class="outer-wrapper">
<h2 class="chapters">Tables</h2>
<table cellpadding="5px" cellspacing="2px" border="1px">
<caption>Table 1</caption>
<tr>
<th>First</th>
<th>Second</th>
<th>Third</th>
<th>Fourth</th>
</tr>
<tr>
<td>First</td>
<td>Second</td>
<td>Third</td>
<td>Fourth</td>
</tr>
</table>
</div>
<div class="outer-wrapper">
<h2 class="chapters">Images</h2>
<a href="http://s1.1zoom.me/big0/174/251457-svetik.jpg">
<img src="http://s1.1zoom.me/big0/174/251457-svetik.jpg" width="560" height="315"/>
</a>
</div>
<div class="outer-wrapper">
<h2 class="chapters">Videos</h2>
<iframe width="560" height="315" src="https://www.youtube.com/embed/TgZl3tEZgEE" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
<div class="outer-wrapper">
<h2 class="chapters">Sites</h2>
<iframe src="http://ya.ru/index.php" width="560" height="315"></iframe>
</div>
</div>
<div id="signin-form">
<form>
<div class="row input-wrapper">
<label for="username">User name: </label>
<input id="username" name="username" type="text" placeholder="user" />
</div>
<div class="row input-wrapper">
<label for="userpassword">User password: </label>
<input id="userpassword" name="userpassword" type="password" placeholder="password" />
</div>
<div class="row button-wrapper">
<button formaction="#" class="signin-button">SigIn</button>
<button formaction="#" class="cancel-button">Cancel</button>
</div>
</form>
</div>
<div id="js-table"></div>
<script src="action.js"></script>
</body>
</html>