This repository has been archived by the owner on Dec 7, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
164 lines (159 loc) · 4.47 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="src/style.css" type="text/css"/>
</head>
<body>
<header>
<div class="logo">
<img alt="logo" width="200" src="src/logo.png">
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Solutions</a></li>
<li><a href="#">Support</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
</header>
<div class="side">
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Solutions</a></li>
<li><a href="#">Support</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
</div>
<div class="content">
<article>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore
magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id
est
laborum.
</article>
<div class="table">
<table width="100%">
<tr>
<th rowspan="2">
ID
</th>
<th rowspan="2">
Name
</th>
<th colspan="2">
Price
</th>
</tr>
<tr>
<th>
NET
</th>
<th>
GROSS
</th>
</tr>
<tr>
<td>
1
</td>
<td>
The quick, brown fox jumps over a lazy dog
</td>
<td>
12
</td>
<td>
13
</td>
</tr>
<tr>
<td>
2
</td>
<td>
The quick, brown fox jumps over a lazy dog
</td>
<td>
156
</td>
<td>
257
</td>
</tr>
<tr>
<td>
3
</td>
<td>
The quick, brown fox jumps over a lazy dog
</td>
<td>
34
</td>
<td>
98
</td>
</tr>
<tr>
<td>
4
</td>
<td>
The quick, brown fox jumps over a lazy dog
</td>
<td>
1346
</td>
<td>
1098
</td>
</tr>
</table>
</div>
<div class="history">
В середине 1990-х годов основные производители браузеров - компании <a
href="https://ru.wikipedia.org/wiki/Netscape_Communications">Netscape</a> и <a
href="https://www.microsoft.com/ru-ru/">Microsoft</a>.
<ul class="browsers">
<li id="chrome">Chrome</li>
<li id="firefoxe">Firefox</li>
<li id="ie">Internet Explorer</li>
<ul class="ie-browsers">
<li id="ie8">IE 8</li>
<li id="ie10">IE 10</li>
<li id="edge">Edge</li>
</ul>
<li id="others">...другие</li>
</ul>
</div>
</div>
<footer>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Solutions</a></li>
<li><a href="#">Support</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
<div class="copyright">
Copyright Ⓒ All right reserved
</div>
</footer>
</body>
</html>