-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (34 loc) · 1.77 KB
/
index.html
File metadata and controls
40 lines (34 loc) · 1.77 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
<html>
<head>
</head>
<!-- Opens Body, changes the colour of the background -->
<body style="background-color: #00bfff;">
<!-- Adds a Header -->
<h1 style="color: #ffffff;"> HELLO WORLD! </h1>
<!-- Adds an image, resizes the image -->
<img src="images/me.jpg" width="600" height="800">
<p style="color: #ffffff;"> My name is Jake Mansfield, but online, I like to go by the name "Vena Cava", after the vein. </p>
<p style="color: #ffffff;"> I have many interests in different things, this includes </p>
<!-- Adds an List with Item Descriptions -->
<dl>
<dt style="color: #ffffff;"><b>Games</b></dt>
<dd style="color: #ffffff;">- Minecraft</dd>
<dd style="color: #ffffff;">- Pokémon</dd>
<dd style="color: #ffffff;">- Zelda</dd>
<dd style="color: #ffffff;">- Tetris</dd>
<dd style="color: #ffffff;">- DOOM</dd>
<dt style="color: #ffffff;"><b>TV & Movies</b></dt>
<dd style="color: #ffffff;">- Marvel</dd>
<dd style="color: #ffffff;">- Star Wars</dd>
<dd style="color: #ffffff;">- Ben 10</dd>
<dt style="color: #ffffff;"><b>Music</b></dt>
<dd style="color: #ffffff;">- Porter Robinson</dd>
<dd style="color: #ffffff;">- Gorillaz</dd>
<dd style="color: #ffffff;">- Madeon</dd>
<dd style="color: #ffffff;">- SIAMÉS</dd>
<dd style="color: #ffffff;">- McBess/McBaise</dd>
</dl>
<!-- Adds a google maps embed -->
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2312.4900744081147!2d-5.895358883944445!3d54.57773828946244!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x486109166b8a1637%3A0xe6873ffd8ad47fff!2sBelfast%20Metropolitan%20College%20-%20Castlereagh%20Campus!5e0!3m2!1sen!2suk!4v1631698567320!5m2!1sen!2suk" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</body>
</html>