-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (94 loc) · 2.24 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
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
91
92
93
94
95
<!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>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #e3e8e9;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
sans-serif;
background-image: url(ffflux.svg);
background-position: center;
background-size: cover;
}
.container {
width: 90%;
margin: 0 auto;
}
.card {
border-radius: 15px;
width: 420px;
height: 400px;
margin: 0 auto;
text-align: center;
position: relative;
background-color: #fff;
color: #0d6a87;
top: 200px;
/* top: 50%; */
/* right: 80%; */
}
img {
position: absolute;
width: 500px;
top: -344px;
right: 36px;
}
button {
margin: 10px;
padding: 10px 20px;
background-color: #daa507;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
width: 250px;
font-size: 20px;
}
#Registration {
background-color: transparent;
color: #daa507;
border: 1px solid #daa507;
}
.under-photo {
/* margin-top: 30%; */
padding-top: 40%;
}
h1 {
margin-bottom: 20px;
}
button a{
text-decoration: none;
color: #fff;
/* color: #daa507; */
font-size: 20px;
font-weight: bold;
transition: color 0.3s ease;
}
.regi{
color: #daa507;
}
</style>
</head>
<body>
<div class="container">
<div class="card">
<img src="exams-animate22.svg" alt="" />
<div class="under-photo">
<h1>Let's DO It</h1>
<button><a href="login.html">Login</a></button>
<br />
<button id="Registration"><a class="regi" href="register.html">Registration</a></button>
</div>
</di>
</div>
</body>
</html>