forked from ab-hi-ji-th/Blockchain-based-voting-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.html
37 lines (34 loc) · 1.21 KB
/
page.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="body.css">
<title>V-Vote Website</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap">
</head>
<body>
<header>
<div class="navigation">
<div class="nav-icon">☰</div>
</div>
</header>
<section class="main-content">
<div class="center-content">
<div class="logo-container">
<img src="https://trbahadurpur.com/wp-content/uploads/2021/01/39.png" alt="V-Vote Logo" class="logo-image">
<h1>V-Vote</h1>
</div>
<p class="slogan">Every Vote Counts, Every Voice Matters!</p>
<div class="buttons">
<a href="testing_3.html">
<button id="signInBtn">Sign In</button>
</a>
<a href="testing_2.html">
<button id="signUpBtn">Sign Up</button>
</a>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>