-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (74 loc) · 2.26 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
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color:rgb(86, 228, 228);
}
.container {
text-align: center;
align-content: center;
/* background-color: red; */
padding: 15px;
}
.test {
display: inline-block;
height: 100%;
background-color: rgb(109, 109, 204);
border: 2px solid rgb(82, 23, 23);
padding: 10px;
}
.center {
margin-left: auto;
margin-right: auto;
}
table, td, th {
border: 1px solid black;
font-size: larger;
}
</style>
</head>
<body>
<div class="container">
<h1>
<i>Hello World! </i>
</h1>
<h2>
<a href="https://youtube.com" target="_blank">
<div class="test">
Test
</div>
</a>
</h2>
<p>
<a href="https://twitter.com" target="_blank">
<img src="doge.jpg" alt=":)" title=":)" width="auto" height="auto">
</a>
</p>
<p>
<table class="center">
<tr>
<th> Foo </th>
<th> Bar </th>
</tr>
<tr>
<td> the </td>
<td> quick </td>
</tr>
<tr>
<td> brown </td>
<td> fox </td>
</tr>
</table>
</p>
<p>Do you like PHP?</p>
<form>
<input type="radio" id="yes" name="yn" value="yes">
<label for="yes">Yes</label><br>
<input type="radio" id="no" name="yn" value="no">
<label for="no">No</label><br>
<button>Submit</button>
</form>
</div>
</body>
</html>