-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPodium.html
More file actions
47 lines (36 loc) · 1.18 KB
/
Podium.html
File metadata and controls
47 lines (36 loc) · 1.18 KB
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
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<link rel = "stylesheet" href="style.css">
<title>Podium</title>
</head>
<!-- Background -->
<style>
body {
background-image: url('Podium_Background.png');
background-repeat: no-repeat;
background-position-x: 0;
background-position-y: 0;
background-attachment: fixed;
background-size: cover;
}
</style>
<!-- Avatar 1st -->
<input type="image" src="Avatar1.PNG" alt="Avatar1" style="position: relative; left: 635px;">
<!-- Avatar 2nd -->
<input type="image" src="Avatar2.png" alt="Avatar2" style="position: relative; left: 5px; top: 110px;">
<!-- Avatar 3rd -->
<input type="image" src="Avatar3.png" alt="Avatar3" style="position: relative; left: 490px; top: 175px;">
<!-- Students Button -->
<a href = "StudentPointList.html">
<button type="button" style="position: relative; left: -750px; top: -370px">
<img src="StudentsButton.PNG" alt="Button Image">
</button>
</a>
<!-- Classes Button -->
<a href = "ClassPointList.html">
<button type="button" style="position: relative; left: 110px; top: -370px">
<img src="ClassesButton.PNG" alt="Button Image">
</button>
</a>
</html>