-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 1.23 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
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<title>codewords</title>
<style>
html, body {
height: 100%;
width: 100%;
margin: 0;
border: none;
padding: 0;
}
div {
position: absolute;
width: 100%;
height: 100%;
text-align: center;
z-index:1;
align-items: center;
}
body {
text-align: center;
background-image: url(handfork_01.jpg);
background-size: 200px;
background-color: #ff0;
font-family: Helvetica, Arial, sans-serif;
color: white;
}
h1 {
font-size: 10vh; /* Base font size */
line-height: 1;
color: #f00;
transform: scale(1, 10); /* Scale text horizontally and vertically */
margin: 0;
z-index:0;
}
a:hover{
position:absolute;
bottom:0;
z-index:5;
color:yellow;
}
</style>
</head>
<body>
<div align="center">
<img src="handfork_01.jpg" width="400"/>
<h1>hello world!</h1>
<a href="WEEK2/">WEEK 2</a>
</div>
</body>