-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.6 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css"
href="styles.css">
<title> Kat's Website</title>
</head>
<img src= "https://data.whicdn.com/images/199438655/large.jpg" alt="Cinnomoroll"
style="vertical-align:middle">
<body>
<button type="button"
onclick="myFunction()">My favorite shade</button>
<script>
function myFunction () {
document.body.style.backgroundColor = "pink";
}
</script>
<h1>Kat's Website</h1>
<p>Hello! My name is Kat. I'm a junior Computer Science Major at Berea College. I am from Somerset KY and plan on moving to Washington someday.</p>
<p style="color:#ffffff">!!EMILY:This assignment honestly led to an epiphany so I can't thank you enough. I honestly am considering being a web designer now. Before I was scared of CSC and had no connection with it but I just understand so much after this!!</p>
<p>Anyway, sorry: Some of my favorite things in life are listed below:
<img src="pusheen.jpg" alt="Computer Programmer Cat"style="float:right;width:200px;height:200px;">
</p>
<ul>
<li>Stuffed Animals</li>
<li>The color pink</li>
<li>Aquariums</li>
<li>Amusement Parks</li>
<li>Sleeping</li>
<li>The epiphany that came with this assignment
</ul>
<a style="color:white;" href="https://adamska426.wordpress.com/">My Blog</a>
<a style="color:white;" href="https://github.com/paesh1997">GitHub</a>
<a style="color:white;" href="Resume.txt">Resume</a>
<img src= "https://78.media.tumblr.com/7d9ed8e829b7d4f75d59a924d4ea58cf/tumblr_osh9j5naEY1u080e1o1_500.gif" alt="Cinnomoroll gif" style="vertical-align:bottom">
</body>
</html>