-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex1.html
60 lines (53 loc) · 1.83 KB
/
index1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="style1.css">
<link rel="shortcut icon" href="./images/fav.png" type="image/png">
<!-- <link rel="stylesheet" href="menu.css"> -->
<title>Home page</title>
<style>
.btn{
border-radius: 25px;
width: 28%;
}
.btn:hover{
color: #AC7D88;
font-weight: bold;
}
</style>
</head>
<body>
<div class="menu-wrap">
<input type="checkbox" class="toggler">
<div class="hamburger">
<div></div>
</div>
<div class="menu">
<div>
<div>
<ul>
<li> <a href="index1.html">Home</a></li>
<li><a href="index.php">My Tasks</a></li>
<li><a href="contact.php">Contact Us</a></li>
<li><a href="about.html">About Us</a></li>
</ul>
</div>
</div>
</div>
</div>
<header class="showcase">
<div class="container showcase-inner">
<h1>XECUTE</h1>
<p>Not getting your day productive, seems like you missed something important 🤔. don't worry you are now at
right place just write your todos and work on it, if you missed something just open the website and know
what you missed. Give a try and watch your carrier growth ✔️
</p>
<a href="signlog.php" class="btn btn-primary">SIGN IN/SIGN UP</a>
</div>
</header>
</body>
</html>