-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (39 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A short introduction of Curtis Lu.">
<link rel="stylesheet" href="style.css">
<title>Curtis' Profile Page</title>
</head>
<body>
<div class="container">
<div class="card-white" id="introduction">
<h1>Hello, I'm Curtis!</h1>
<h2>I'm a programmer...I think...</h2>
<img src="../images/profilepic.jpg" width="150px" alt="Curtis Lu">
<p>I love badminton and video games. Fun fact: I'm colorblind.<br>
I'm currently learning programming to pursue a career in software engineering or creating a game.</p>
<button id="demo" onclick="myFunction()">Click me!</button>
<script>
function myFunction() {
document.getElementById("demo").style.color = "yellow";
}
</script>
<button onclick="window.location.href='https://www.youtube.com/watch?v=dQw4w9WgXcQ';">
No click me!
</button>
</div>
<div class="card-white" id="social">
<h2>Social Links</h2>
<ul class="list-inline">
<li><a href="https://github.com/KarasuGummi">GitHub</a></li>
<li><a href="https://www.facebook.com/KarasuGummi">Facebook</a></li>
<li><a href="https://twitter.com/KarasuGummi">Twitter</a></li>
</ul>
</div>
</div>
</body>
</html>