-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>About Me</title>
<style type="text/css">
body {
background-image: url("./assets/carPixal.gif");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
</style>
<link rel="stylesheet" href="/styles/home.css" />
</head>
<body>
<div class="Bar">
<a href="https://www.linkedin.com/in/romeo-yang-a7a125219/">
Connect with me!
</a>
<a href="/html/project.html">Projects</a>
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ">
<h6 class="Troll">MORE ABOUT ME!</h6>
</a>
</div>
<p>Hello, my name is Romeo yang. Welcome to my "About me" page!</p>
<img class="Selfie" src="./assets/me.jpg" alt="image not found" />
<img class="gif" src="./assets/romeoNyanCat2.gif" alt="image not found" />
<section>
<p>Please rate my page on a scale from 1-10!</p>
<form action="" id="mainform">
<label for=""></label>
<input type="range" name="" id="ratingInput" />
<input type="submit" id="submitBtn" value="Thank you" />
</form>
<p class="paragraph"></p>
</section>
<script defer src="/javascript/index.js"></script>
</body>
</html>