-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.html
47 lines (46 loc) · 1.08 KB
/
style.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
<!DOCTYPE html>
<html>
<head>
<title>My Webpage!!</title>
<style>
h1{
color: red;
text-align: center;
}
li{
color: blue;
}
</style>
</head>
<body>
<h1>THIS IS THE TEST BRANCH!!!!</h1>
Hello, world! Hello Again! Hello after the reset!
Ways I know to say Hello
<ul>
<li> Hola </li>
<li> Hello </li>
<li> Mar7aba</li>
<li> Bonjour</li>
</ul>
This is a gif<br/>
<img src="mkbhd.gif" height="50%" width="50%">
<h1> Random data because why not </h1>
<h1> Here is a second h1</h1>
<table>
<tr>
<td> 1 </td>
<td> 2 </td>
<td> 3 </td>
<td> 4 </td>
</tr>
<tr>
<td> A </td>
<td> B </td>
<td> C </td>
<td> D </td>
</table>
<form>
<input type="text" placeholder="random shit honestly" random = "random">
<button> Press here for nothing </button>
</body>
</html>