-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (93 loc) · 2.65 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
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>💚Poli's Personal Site🌏</title>
</head>
<body>
<table cellspacing="4">
<tr>
<td>
<img src="image/PolarBear.jpg" alt="My Image" width="200px" height="150px">
<!--in img src i.e source we can have the location of the from the internet
or we can have from the pc (as i have done here). PolarBear.jpg is inside image
folder so i have used image/PolarBear.jpg
-->
</td>
<td>
<h1>🚅Poli Popaloo Poopla🚀</h1>
<p><em>Founder and❄🍃 <strong><a href="https://polarbearsinternational.org/">CEO of nothing⇜💗My Home Site</a></strong></em></p>
<p>
Hi, I am Poli Popaloo Poopla. I am a Polar Bear. Sam Smith is my favourite.
I love it when he twerks.✂
<br>
I poop white. Popaloo was my best friends name. I loved him. I am gay.
<br>
People call me Big Lump of Deep Shit.👣
</p>
</td>
</tr>
</table>
<hr>
<h3>Education and Schooling🐲</h3>
<ul>
<li><a href="https://www.harvard.edu/">Brooklyn State Dominican Republic University.⌚</a></li>
<li><a href="https://www.uq.edu.au/">Victorian Goldsmith Domsbury High School, New York.🐮</a></li>
<li><a href="https://www.bifrost.is/english/">St. Thompson Primary School, Chicago.🌸</a></li>
<!--
<a href="https://example.com">Website</a> (for normal page linking)
<a href="mailto:m.bluth@example.com">Email</a> (for mail)
<a href="tel:+123456789">Phone</a> (for phone call)
-->
<li><a href="secondpage.html">OOPS😎</a></li>
</ul>
<hr>
<h3>Work</h3>
<table border="5">
<thead>
<tr>
<th>Year</th>
<th>Position</th>
</tr>
</thead>
<tbody>
<tr>
<td>2012-2014</td>
<td>Alaskan Conservatory Union</td>
</tr>
<tr>
<td>2015</td>
<td>Whale Conservation Forum Lead</td>
</tr>
</tbody>
<!-- <tfoot>
</tfoot> -->
</table>
<hr>
<h3>Skills</h3>
<table cellspacing="10px">
<tr>
<td>Maths</td>
<td>✰✰✰🌟</td>
</tr>
<tr>
<td>Java</td>
<td>✰✰🌟</td>
</tr>
<tr>
<td>Web Development</td>
<td>✰✰🌟</td>
</tr>
</table>
<br>
<hr>
<br>
<a href="contact-me.html">Come To Me</a>
<!-- <img /> tag can also be used inside <a> tag. eg.
<a target="_blank" href="https://www.wikipedia.org">
Wikipedia
<img alt="(opens in new tab)" src="newtab.svg">
</a> -->
</body>
</html>
<!--16 -->