-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
35 lines (34 loc) · 1.43 KB
/
index.php
File metadata and controls
35 lines (34 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en" class="index-page"> <!-- Add class to HTML tag -->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Registration</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body class = "shravani">
<!-- Navigation Bar -->
<nav>
<div class="nav-container">
<div class="logo">TaskManager</div>
<ul id="nav-links">
<li><a href="register.php">Register</a></li>
<li><a href="login.php">Login</a></li>
</ul>
<div class="hamburger" id="hamburger-menu">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
</div>
</nav>
<!-- Hero Section with Background Image -->
<section id="home" class="hero" style="background-image: url('bg.jpg'); background-size: cover; background-position: center; height: 100vh; display: flex; justify-content: center; align-items: center; text-align: center; color: white;">
<div class="hero-content">
<h1>Manage Your Tasks Efficiently</h1>
<p>Organize, track, and complete your tasks with ease.</p>
</div>
</section>
</body>
</html>