forked from maniac-tech/Hackathon---KJSCE-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.php
More file actions
72 lines (71 loc) · 1.56 KB
/
main.php
File metadata and controls
72 lines (71 loc) · 1.56 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<title>Welcome to Second Innings!</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
</head>
<body>
<center>
<div class="container" id="Para">
<h1>Second Innings!</h1>
</div>
<p><I>What is Second Innings about?</i></p>
<p>Second Innings was developed at a Hackathon held by KJSCE.
The idea behind developing this was to make old age life easier.</p>
<p><I> What is our Idea? </i></p>
<p>Our Idea was to create a web app, which provided all the necessary information to the user.</p>
<div id="loginContent">
<button>Login now!</button>
</div>
</center>
<script>
$(document).ready(function(){
$("button").click(function(){
$("#loginContent").load("Login.html");
});
});
</script>
</body>
<style type="text/css">
body{
background-image: url("cityy.jpg") /*no-repeat center center fixed*/;
background-size: 1400px 800px;
/*-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;*/
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
position: relative;
width: 100%;
}
li {
float: left;
border-right: 1px solid #bbb;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover:not(.active) {
background-color: #111;
}
li:last-child {
border-right: none;
}
.active {
background-color: #4CAF50;
}
#Para{
position: relative;
}
</style>
</html>