-
Notifications
You must be signed in to change notification settings - Fork 1
/
homenext.php
94 lines (69 loc) · 3.07 KB
/
homenext.php
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
<!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">
<title>Home page </title>
<!-- Bootstrap -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/login.css" rel="stylesheet">
<link href="assets/css/news.css" rel="stylesheet">
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/login.js"></script>
<div class="container-fluid">
<h1 style="text-align: center; font-weight: 700; font-size: 60px; ">Online Voting System</h1> <br>
</div>
<nav class="navbar navbar-expand-sm bg-dark navbar-black sticky-top">
<a class="navbar-brand"><img src="logo.jpg" style="height: 43px; width: 70px;" ></a>
<ul class="navbar-nav " style="padding-left: 700px">
<li class="nav-item">
<a class="nav-link" href="homenext.php">Home</a>
</li>
<li class="nav-item" style="padding-left: 14px">
<a href="candidate.php" class="nav-link" >Candidates</a>
</li>
<li class="nav-item" style="padding-left: 14px">
<a href="vote.php" class="nav-link" >Vote</a>
</li>
<li class="nav-item" style="padding-left: 14px">
<a href="" class="nav-link" >Vote Result</a>
</li>
<li class="nav-item" style="padding-left: 14px">
<a href="" class="nav-link" >About Us</a>
</li>
<li class="nav-item" style="padding-left: 14px">
<a href="" class="nav-link" >Log Out</a>
</li>
</ul>
</nav>
<div style="padding-left:200px; padding-top:20px; font-size:20px; height:30px; width:400px; ">Latest Website Activity </div>
<div class="news shadow">
<div style=" margin: 30px; width: 80% ; text-align:left ; padding-top: 18px; font-size:1em;">
Hosted By <span style="color:green;">Admin</span> on June 29th, 2018.
<p style=" margin: 15px; color: rgb(119,119,119) ; font-size: 1em ; font-style:italic ;"> Last Updated on June 28th, 2018.</p>
</div>
<h3>Headline</h3>
<a href="" >Read More</a>
</div>
<div class="news shadow">
<div style=" margin: 30px; width: 80% ; text-align:left ; padding-top: 18px; font-size:1em;">
Hosted By <span style="color:green;">Association</span> on January 18th, 2018.
<p style=" margin: 15px; color: rgb(119,119,119) ; font-size: 1em ; font-style:italic ;"> Last Updated on June 28th, 2018.</p>
</div>
<h3>Headline</h3>
<a href="">Read More</a>
</div>
<div class="news shadow">
<div style=" margin: 30px; width: 80% ; text-align:left ; padding-top: 18px; font-size:1em;">
Hosted By <span style="color:green;">Association</span> on January 18th, 2018.
<p style=" margin: 15px; color: rgb(119,119,119) ; font-size: 1em ; font-style:italic ;"> Last Updated on June 28th, 2018.</p>
</div>
<h3>Headline</h3>
<a href="">Read More</a>
</div>
</body>
</html>