-
Notifications
You must be signed in to change notification settings - Fork 0
/
biopage.html
49 lines (43 loc) · 1.76 KB
/
biopage.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
<!DOCTYPE html>
<html>
<head>
<title>My Student Profile</title>
<h1 style="color: white">My Student Profile</h1>
<link rel="stylesheet" type="text/css" href="theme.css">
<style>
</style>
</head>
<body style="background-color:mediumseagreen;">
<img src="https://pm1.narvii.com/6099/decba5eab280772b62109f52f89cf867098900c4_128.jpg"/img>
<h3>Hogwarts School of Wizardry and Witchcraft</h3>
<p>My favourite modules:
<ul>
<li>Muggle Studies</li>
<li>Arithmancy</li>
<li>Transfiguration</li>
</ul>
</p>
<p>Note to self: Fear of a name only increases fear of the thing itself.</p>
<hr>
<h4>Select your favourite treat!</h4>
<table style="text-align: center">
<tr>
<td><a href="http://harrypotter.wikia.com/wiki/Bertie_Bott%27s_Every_Flavour_Beans"><img src="https://vignette.wikia.nocookie.net/harrypotter/images/6/60/Bertie_Botts_EFB.png/revision/latest/scale-to-width-down/341?cb=20161128010133"/img></a></td>
<td><a href="http://harrypotter.wikia.com/wiki/Butterbeer"><img src="https://vignette.wikia.nocookie.net/harrypotter/images/5/56/Glasses_of_Butterbeer.JPG/revision/latest/scale-to-width-down/350?cb=20091117205719"/img></a></td>
<td><a href="http://harrypotter.wikia.com/wiki/Chocolate_Frog"><img src="https://vignette.wikia.nocookie.net/harrypotter/images/3/3c/Chocolate_Frog1.jpg/revision/latest/scale-to-width-down/350?cb=20090510014518"/img></a><br></td>
</tr>
<tr>
<form>
<td><input type="radio" name="treat" value="jellybeans"></td>
<td><input type="radio" name="treat" value="butterbeer"></td>
<td><input type="radio" name="treat" value="chocfrog"></td>
</form>
</tr>
<tr>
<td>Bertie Bott's Every Flavor Beans</td>
<td>Butterbeer</td>
<td>Chocolate Frogs</td>
</tr>
</table>
</body>
</html>