-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (53 loc) · 1.41 KB
/
Copy pathindex.html
File metadata and controls
54 lines (53 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Enrol for a Course</title>
<link rel="stylesheet" href="reg_css.css" />
</head>
<body>
<div class="bg-image home-bg welcome"></div>
<div class="container cont_index">
<h2>COURSE MANAGEMENT SYSTEM</h2>
<span
>Shop 100,000+ High-Quality On-Demand Online Courses! Find the right
instructor for you. Expert Instructors. Download To Your Phone. Over
50,000 Instructors. Lifetime Access. Courses in 60+ Languages. Over
130,000 Courses.</span
>
<h3>-A Project By Dikshant</h3>
<a id="login" href="register.php" class="button5 btn_log">Register </a>
<a id="login" href="login.php" class="button5 btn_inx">Login </a>
</div>
</body>
<style>
body {
background-image: url(img/dust-particles-gif-transparent.gif);
font-family: "Times New Roman", Times, serif;
}
.btn_log {
left: 53%;
top: 75%;
width: 250px;
}
.btn_inx {
left: 10%;
top: 75%;
width: 250px;
}
h2 {
margin-left: 15%;
color: white;
/* font-size:large; */
font-weight: bolder;
}
span {
margin-left: 0%;
}
h3 {
margin-left: 60%;
}
</style>
</html>