-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (67 loc) · 1.83 KB
/
index.html
File metadata and controls
90 lines (67 loc) · 1.83 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
<style>
body{
background-image: url('https://i.pinimg.com/originals/af/8d/63/af8d63a477078732b79ff9d9fc60873f.jpg');
background-repeat: no-repeat;
background-size: cover;
}
h1 {
background-color: #eee;
color: black;
text-align: center;
box-shadow: 0 0 20px 4px rgba(0, 255, 191, 0.897);
margin: 20 px auto;
padding: 10px;
text-transform: uppercase;
}
article {
position: relative;
}
p {
padding: 10px;
margin-left: 10px;
width: 200px;
height: 20px;
transition-duration: .5s ;
}
#one {
background-color: rgba(128, 128, 128, 0.253);
color: rgb(8, 49, 231);
}
p:hover{
margin-left: 20px;
}
#two {
background-color: violet;
color: yellow;
}
#three {
background-color: teal;
color: tomato;
}
#four {
background-color: turquoise;
color: white;
height: inherit;
}
</style>
</head>
<body>
<header></header>
<main>
<article>
<h1>Class 1 Lab</h1>
<hr>
<p id="one"> please enter your lovely name</p>
<p id="two"> please enter your age</p>
<p id="three"> where are you live</p>
<p id="four"> Mention something you like about yourself </p>
</article>
</main>
<footer> © abu-nofal</footer>
<script src="js /app.js"></script>
</body>
</html>