-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
66 lines (53 loc) · 1.7 KB
/
test.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
<html>
<head>
<title>My site</title>
<link href="neww.css" type="text/css" rel="stylesheet">
<style>
</style>
</head>
<body id="p">
<div id="main" >
<h1>My site</h1>
<hr>
<p class="blue">testing html</p>
<a href="https://google.gr" target="_blank">press me</a>
<ul>
<li><a href="https://google.gr" target="_blank">press me</a></li>
<li><a href="sitetes.html">other page</a></li>
</ul>
<div class="form-row">
<form action="/action_page.php">
First name: <input type="text" name="FirstName" value=""><br>
Last nameeeeeee: <input type="text" name="LastName" value=""><br>
<input type="submit" value="Submit">
</form>
</div>
<!--<picture>
<source media="(min-width: 5px)" srcset="hey.jpeg">
<img src="hey2.jpg" alt="broken" style="width:auto;">
</picture>-->
<table>
<tbody>
<tr>
<th>test1</th>
<th>test2</th>
</tr>
</tbody>
<tfoot>
<tr>
<td>
test3
<td>
test4
</td>
</td>
</tr>
</tfoot>
</table>
<p class="blue">H
<sub>2</sub>O </p>
<p class="green">H<sup>2</sup>O
</p>
</div>
</body>
</html>