-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathtestHtml.html
More file actions
113 lines (110 loc) · 4.55 KB
/
testHtml.html
File metadata and controls
113 lines (110 loc) · 4.55 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<div class="reader-container container container_center">
<div class="article-image">
<a href="https://www.pexels.com/ru-ru/photo/7961265/">
<img src="https://images.pexels.com/photos/7961265/pexels-photo-7961265.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1" />
</a>
</div>
<p>Lorem</p>
<h1>h1</h1>
<h2><s>h2</s></h2>
<h3>h3</h3>
<h4>h4</h4>
<h5>h5</h5>
<br />
<br />
<h6>h6</h6>
<p>
<s>Lorem ipsum</s> dolor <br />
sit, <b>amet</b> consectetur <strike>adipisicing</strike> elit. Illo
aperiam perferendis soluta nam <small>ducimus</small> ipsa <br />
alias animi asperiores quisquam aut ex minus, cum
<u>possimus</u> accusamus corporis
<a href="https://www.google.com/">Test link</a> consequatur
<i>ipsam</i> praesentium.
</p>
<table class="tg">
<thead>
<tr>
<td class="tg-0lax" rowspan="3">1</td>
<td class="tg-0lax">2</td>
<td class="tg-0lax">3</td>
<td class="tg-0lax">4</td>
</tr>
<tr>
<td class="tg-0lax" rowspan="2">5</td>
<td class="tg-0lax" colspan="2">6</td>
</tr>
<tr>
<td class="tg-0lax">7</td>
<td class="tg-0lax">8</td>
</tr>
</thead>
</table>
<br />
<table>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Email Address</th>
</tr>
<tr>
<td>Hillary</td>
<td>Nyakundi</td>
<td>tables@mail.com</td>
</tr>
<tr>
<td>Lary</td>
<td>Mak</td>
<td>developer@mail.com</td>
</tr>
</table>
<ul>
<li>
<p>
<s>Lorem ipsum</s> dolor <br />
sit, <b>amet</b> consectetur <strike>adipisicing</strike> elit. Illo
aperiam perferendis soluta nam <small>ducimus</small> ipsa <br />
alias animi asperiores quisquam aut ex minus, cum
<u>possimus</u> accusamus corporis
<a href="https://www.google.com/">Test link</a> consequatur
<i>ipsam</i> praesentium.
</p>
</li>
lorem
<li>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam
voluptates dignissimos, praesentium non necessitatibus reiciendis
nihil repudiandae quibusdam deleniti, placeat accusantium impedit
aperiam laborum. Cupiditate sed repellendus eos quam harum.
<ol>
<li>Option 1</li>
<li>Option 2</li>
</ol>
</li>
</ul>
<p>
Лорем ипсум долор сит амет, хинц феугаит албуциус не пер, вис еу темпор
номинати маиестатис. Еу ерос оптион яуи. Ерат миним ехерци хас еа, нец
легимус детерруиссет ат. Еирмод тхеопхрастус те хис, еи яуо видит аугуе,
дицтас цонсецтетуер при ад. Бруте сенсибус вис ат, нам путант форенсибус
ид, мел еа порро толлит перфецто. Яуот цлита ут нец. Ан иус алиа
цонсецтетуер, те хис тале неморе. Цу сусципит апеириан торяуатос цум.
Яуи ут адхуц аппареат цомпрехенсам, граецис еррорибус еи вел.
</p>
<p>—————————————————————</p>
<br />
<p>● Lorem ipsum dolor sit amet</p>
<p>● Lorem ipsum dolor sit amet</p>
<p>Lorem ipsum dolor sit amet. 😊</p>
</div>
</body>
</html>