-
Notifications
You must be signed in to change notification settings - Fork 0
/
landing.html
91 lines (71 loc) · 3.29 KB
/
landing.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<title>Organize the Chaos</title>
<link rel="stylesheet" href="./CSS/index.css">
<link rel="stylesheet" href="./CSS/postIt.css">
<link rel="stylesheet" href="./Components/Dropdown/dropdown.css">
<link rel="stylesheet" href="./Components/flip-cards/flip-cards.css">
</head>
<body>
<script defer="defer" src="./Components/Dropdown/dropdown.js"></script>
<div class="header-container">
<div class="dropdown">
<div class="dropdown-button">Menu</div>
<div class="dropdown-content dropdown-hidden">
<a class="dropdown-link" href="landing.html">The Modern Researcher</a>
<a class="dropdown-link" href="https://moderndayresearcher.firebaseapp.com">Login</a>
<a class="dropdown-link" href="index.html">Home</a>
<a class="dropdown-link" href="aboutUs.html">About Us</a>
</div>
</div>
<p class="header">The Modern Researcher</p>
</div>
<section class= "postIt">
<div class="quote-container">
<i class="pin"></i>
<blockquote class="note yellow">
Our mission is to organize your links library.
<cite class="author">MDR</cite>
</blockquote>
</div>
<div class="quote-container">
<i class="pin"></i>
<blockquote class="note yellow">
You can create and share your own links, so that you can easily manage them.
<cite class="author">MDR</cite>
</blockquote>
</div>
<div class="quote-container">
<i class="pin"></i>
<blockquote class="note yellow">
You can click a category to filter links, so that links are easily accessible.
<cite class="author">MDR</cite>
</blockquote>
</div>
<div class="quote-container">
<i class="pin"></i>
<blockquote class="note yellow">
You can login, so your experience is personalized.
<cite class="author">MDR</cite>
</blockquote>
</div>
<div class="quote-container">
<i class="pin"></i>
<blockquote class="note yellow">
You can see links shared with you, so that you can know who wants you to read what link.
<cite class="author">MDR</cite>
</blockquote>
</div>
</section>
<div class= 'footer-container'>
<footer>
<div class="details">
<p>Copyright © 2019 The Modern Day Researcher.
<span>
All Rights Reserved. Design by Lambda Team.</span>
</div>
</footer>
</div>
</body>
</html>