-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·41 lines (30 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<title>Alex's Website</title>
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<script src="poem.js"></script>
</head>
<body>
<div class="section" id="plan">
<h1>Welcome to my Rad Website!</h1>
<div class="minileft">
<div><img src="garfield_tpose.jpg" onclick="redirectToGarfield()"></div>
<div><img src="graphic_design.jpg" width = "75%"/></div>
<div><img src="codepic.jpg" width = "50%"/></div>
</div>
<h2>About me</h2>
<p>
I am a senior computer science major at Berea college. I enjoy programming, game design, running, kickboxing, writing,
drawing, video games, and spending time with my family.
</p>
<p>... And Garfield.
<p>Also click the picture of Garfield to learn more about him, please.</p>
<select>
<option value="My Blog" onclick="redirectToBlog()">My Blog</option>
<option value="My GitHub" onclick="redirectToGitHub()">My GitHub</option>
</select>
</div>
<div><button type="button" id="myButton" onclick="changeButtonColor()">Click to change color, woah!</button></div>
</body>
</html>