-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (64 loc) · 1.68 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
<!DOCTYPE html>
<html>
<title>Welcome Homepage</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="w3.css">
<body>
<header class="w3-container w3-teal">
<nav class="w3-topnav w3-right-align ">
<a href="register.html">Register</a>
<a href="faq.html">FAQ</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<div class=" w3-center style="width:20%" align-middle">
<img src="jntuk.jpg" alt="Car" style="width:20%" >
</div>
<div class="w3-container w3-center">
<h1 class="w3-center">
LEARN CUBE
</h1>
<h3>
Student Knowledge Repository
</h3>
</div>
<style>
#center {
margin: auto;
width: 60%;
border:15px ;
height:400px;
align : center;
}
</style>
<div class="w3-container w3-card-16" id="center">
<h2 class="w3-center">Please select one of the below logins<h2>
<div class="cw3-container w3-row">
<div class="w3-col m6 w3-center" style="margin-top: 100px;
margin-bottom: auto;
margin-right: auto;
margin-left: auto;">
<a class="w3-btn w3-red w3-xlarge" href="studentlogin.html">Student</a>
</div>
<div class="w3-col m6 w3-center" style="margin-top: 100px;
margin-bottom: auto;
margin-right: auto;
margin-left: auto;">
<a class="w3-btn w3-deep-purple w3-xlarge" href="teacherlogin.html">Faculty</a>
</div>
</div>
</div>
<style>
#footer {
margin-top: 20px;
position: static;
bottom: 0;
width: 100%;
}
</style>
<footer class="w3-container w3-blue-grey" id="footer">
<p> ©Department Of Computer Science</p>
</footer>
</body>
</html>