-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcertificate.html
88 lines (87 loc) · 1.74 KB
/
certificate.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#p1{
height: 180px;
width: 300px;
margin-left: 8%;
margin-top: 0%;
color:chocolate;
border-radius: 5%;
}
h1{
width: 350px;
font-size:13px;
font-style: italic;
font-family: Georgia, 'Times New Roman', Times, serif;
color: chocolate;
overflow: hidden;
white-space: nowrap;
border-right: 5px solid;
animation:
typing 6s steps(50),
cursor .4s step-end infinite alternate;
}
@keyframes cursor{
50%{border-color: transparent}
}
@keyframes typing{
from {width: 0}
}
#cyber{
height: 170px;
width: 280px;
margin-left: 1%;
margin-top: 2%;
}
#html{
height: 300px;
width: 250px;
margin-left: 11%;
margin-top: 4%;
}
#sql{
height: 300px;
width: 250px;
margin-left: 11%;
margin-top: 4%;
}
body{
background-image: url(images\ \(4\).jpg);
background-size: 55%;
}
button{
height: 30px;
width: 60px;
background-color: aqua;
margin-left: 20%;
}
a{
font-size: medium;
font-family: 'Times New Roman', Times, serif;
font-style: italic;
font-weight: bolder;
color: chocolate;
}
</style>
</head>
<body>
<form id="form1">
<h1>THOSE ARE THE CERTIFICATE I HAVE BEEN OFFERED</h1>
<P id="p1">
<img src="cyber.JPG" id="cyber">
</P>
<p id="p2">
<img src="html.JPG" id="html">
</p>
<p id="p3">
<img src="sql.JPG" id="sql">
</p>
</form>
<button><a href="./">HOME</a></button>
</body>
</html>