-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (59 loc) · 2.42 KB
/
Copy pathindex.html
File metadata and controls
62 lines (59 loc) · 2.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dailysh</title>
<!-- CSS link -->
<link rel="stylesheet" href="./src/styles/styles.css" />
<!-- logo -->
<link rel="icon" href="./src/images/logo1.png" type="image/icon type" >
</head>
<body>
<main class="container-homepage">
<header class="header-homepage">
<!-- ==== NAVBAR ==== -->
<nav class="nav-homepage">
<div class="logo-homepage">
<h1>Dailysh</h1>
</div>
<div class="nav-menu-homepage">
<ul class="nav-menu-list">
<li class="nav-menu-item">
<a href="#" class="nav-menu-link contact-btn">contact</a>
</li>
</ul>
</div>
</nav>
</header>
<section class="content-homepage">
<aside class="left-content">
<article class="content-des">
<h1>Dailysh</h1>
<p class="slogan">WISH MORE, ACHIEVE MORE.</p>
<p class="brand-overview">
Dailysh is designed to streamline your daily routine
by combining a powerful to-do list and a versatile
note-taking feature in one convenient web
application. Stay organized, increase your
productivity, and keep all your important
information in one place.
</p>
<button class="homepage-btn">
<a href="./public/dashboard.html">
<span> Try For Free </span>
</a>
</button>
</article>
</aside>
<aside class="right-content">
<img
class="content-img"
src="./src/images/splash-img.png"
alt=""
/>
</aside>
</section>
</main>
</body>
</html>