-
Notifications
You must be signed in to change notification settings - Fork 1
/
course.html
73 lines (67 loc) · 2.11 KB
/
course.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/course.css">
<link rel="icon" type="image/png" href="logo/fav.jpeg">
</head>
<body>
<div class="container">
<div class="select">
<h1>
<center>Select Your Course And Learn It!!!</center>
</h1>
</div>
<div class="courses">
<div class="htmlC card">
<h1>HTML</h1>
<img src="logo/html.png" alt="">
<p>Register in <B>HTML</B> course And Learn WebDev</p><br><br><br>
<a href="/html"><input type="submit" class="submit" value="Register"></a>
</div>
<div class="cssC card">
<h1>CSS</h1>
<img src="logo/css.png" alt="">
<p>Register in <B>CSS</B> course And Learn WebDevelopment</p><br><br><br>
<a href="/css"><input type="submit" class="submit" value="Register"></a>
</div>
<div class="jsC card">
<h1>Python</h1>
<img src="logo/python.png" alt="">
<p>Register in <B>Python</B> course And Learn Python</p><br><br><br>
<a href="/python"><input type="submit" class="submit" value="Register"></a>
</div>
<div class="cppC card">
<h1>Cpp/C++</h1>
<img src="logo/c++.png" alt="">
<p>Register in <B>CPP</B> course And Learn OOP</p><br><br><br>
<a href="/cpp"><input type="submit" class="submit" value="Register"></a>
</div>
</div>
<center><button id="home"><a href="/">Home</a></button>
<style>
a {
color: azure;
text-decoration: none;
}
#home {
display: block;
margin-bottom: 25px;
padding: 10px 20px;
font-size: 16px;
color: #fff;
background-color: #4CAF50;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
</style>
</center>
</div>
</body>
</html>