-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLab2.html
51 lines (47 loc) · 1.51 KB
/
Lab2.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>
<head>
<title>Lab2-Noisuu</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width-device-width", initail-scale="1".0 />
<link rel="stylesheet" href="myStyle.css" />
</head>
<body>
<!-- The video -->
<video autoplay loop muted playsinline class="background">
<source src="backgroundCSS101.mp4" type="video/mp4">
</video>
<!-- google font -->
<link href="https://fonts.googleapis.com/css2?family=Cookie&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Cookie', sans-serif;
}
h1{
text-shadow: 3px 3px green;
}
</style>
<!-- body -->
</div>
<div class="top">
<div class="main">
<h1>This is CSS101.html</h1>
<div class="box">This is a gift BOX
<div class="box-tape-left"></div>
<div class="box-tape-right"></div>
<div class="box-tape-center"></div>
</div>
<div class="box-gifts">
<div class="box-gifts-shadow"></div>
</div>
<div class="box-gift"></div>
<div class="box-star box-star-1"></div>
<div class="box-star box-star-2"></div>
<div class="box-star box-star-3"></div>
<div class="box-star box-star-4"></div>
<div class="box-star box-star-5"></div>
</div>
</div>
</body>
</html>