Skip to content

Commit 3bd16d1

Browse files
authored
Merge pull request #136 from PdxCodeGuild/jonpan-html-lab01
Jonpan html lab01
2 parents 12cc37a + cb2f8db commit 3bd16d1

File tree

4 files changed

+62
-0
lines changed

4 files changed

+62
-0
lines changed

code/jonpan/img/musk01.jpg

39.8 KB
Loading

code/jonpan/img/sqpurple.gif

59 Bytes
Loading

code/jonpan/img/webb.png

3.48 MB
Loading

code/jonpan/lab01.html

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<!-- Required meta tags -->
5+
<meta charset="utf-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7+
8+
<style>
9+
p {
10+
font-family: Arial, Helvetica, sans-serif;
11+
}
12+
body {
13+
background-image: url('img/webb.png');
14+
background-color: lightgray;
15+
color: white;
16+
}
17+
a {
18+
color: yellow;
19+
}
20+
blockquote {
21+
font-family: Tahoma, Verdana, sans-serif;
22+
}
23+
img {
24+
border-radius: 30px;
25+
}
26+
ul {
27+
list-style-image: url('img/sqpurple.gif');
28+
list-style-position: inside;
29+
}
30+
</style>
31+
32+
<title>Jon Pan Lab01</title>
33+
</head>
34+
<body>
35+
36+
<table><tr><td><center><br><br>
37+
38+
<br><u>Elon Musk</u><br>
39+
40+
<p marginwidth="10" marginheight="10" padding="10">Elon Reeve Musk is a business magnate and investor. He is the founder, CEO, and Chief Engineer at SpaceX;
41+
angel investor, CEO, and Product Architect of Tesla, Inc.; founder of The Boring Company;
42+
and co-founder of Neuralink and OpenAI.</p><br>
43+
44+
The last paragraph was from his <a href="https://en.wikipedia.org/wiki/Elon_Musk">Wikipedia page</a>. <br><br>
45+
46+
<img src="img/musk01.jpg" height="300"><br><br>
47+
48+
List of places lived:
49+
<ul>
50+
<li>South Africa</li>
51+
<li>Canada</li>
52+
<li>California</li>
53+
<li>Texas</li>
54+
</ul><br><br>
55+
56+
A quote from Elon Musk: <blockquote>"If humanity doesn't land on Mars in my lifetime,
57+
I would be very disappointed."</blockquote>
58+
59+
</center></td></tr></table>
60+
61+
</body>
62+
</html>

0 commit comments

Comments
 (0)