-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (58 loc) · 2.11 KB
/
index.html
File metadata and controls
75 lines (58 loc) · 2.11 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
63
64
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tabless</title>
<link href="https://fonts.googleapis.com/css?family=Indie+Flower|Roboto" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<nav>
<div class="mobile-logo">
<img src="img\Tabless Logo Transparent.png" alt="Logo">
</div>
<div class="navbar-content">
<div class="logo">
<img src="img\Tabless Logo Transparent.png" alt="Logo">
</div>
<div class="links">
<a href="#">Home</a>
<a href="about.html">About Us</a>
<a href="https://tabhoarders.netlify.com"><button class="pure-material-button-contained">Log in/Sign up</button></a>
</div>
</div>
</nav>
<div class="container">
<header>
<h1>Tabless</h1>
<h2>A modern solution for tab clutter</h2>
</header>
<div class="main">
<section class="features feature1">
<div class="feature-text">
<h3>Organize</h3>
<p>Store your tabs with just a few simple clicks</p>
</div>
</section>
<section class="features feature2">
<div class="feature-text">
<h3>Categorize</h3>
<p>Sort your tabs by category or by date</p>
</div>
</section>
<section class="features feature3">
<div class="feature-text">
<h3>Access</h3>
<p>Since your collection is stored on the cloud, simply log in on any browser to access your tabs</p>
</div>
</section>
<footer>
<p>Copyright Tabless 2019</p>
</footer>
</div>
</div>
</body>