-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (79 loc) · 3.68 KB
/
index.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
92
93
94
95
96
97
98
99
<!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 rel="stylesheet" href="css/index.css">
<link rel="icon" type="image/png" href="./img/yelp-burst.png">
<title>Yelp Tacopedia</title>
</head>
<body>
<!-- Header -->
<header>
<div class="header-wrap">
<div class="branding">
<a href="index.html" class="img-link"><img src="./img/yelp-logo.svg" alt="Yelp"></a>
<a href="index.html" class="text-link"><h1>Tacopedia</h1></a>
</div>
<a href="https://tacopedia.netlify.com" class="text-link" id="header-start">Get Started</a>
</div>
</header>
<!-- Showcase -->
<section class="showcase">
<div class="main-heading">
<h2>Powered by <img src="./img/yelp-logo.svg" alt="Yelp"><br>and Mota Analytica<br>to find you the best tacos in town</h2>
</div>
</section>
<!-- Main Content -->
<section class="main-content">
<h2>Discover the Power of Sentiment Analysis</h2>
<div class="info-boxes">
<div class="info-box">
<h3>Sentiment-Based Ratings</h3>
<p>What do all those reviews really mean? We determine reviewers' real feelings, and help you make informed decisions in your search for tacos.</p>
</div>
<div class="info-box">
<h3>Location Data</h3>
<p>Find your way to your nearest taco shop, anywhere, any time with up-to-date maps and listings.</p>
</div>
<div class="info-box">
<h3>Keyword Analysis</h3>
<p>We use world clouds to give you the best information at a glance. Look out for emphasis on keywords, and their positive or negative connotations.</p>
</div>
</div>
</section>
<!-- Info Slides -->
<section class="info-slides">
<!-- Tab Components -->
<div class="info-container">
<h2>App Features</h2>
<div class="tabs">
<div class="tab tab-selected" data-slide='results'>Search Results</div>
<div class="tab" data-slide='business'>Business Page</div>
<div class="tab" data-slide='bookmarks'>Bookmarks</div>
</div>
<!-- Slide Components -->
<div class="slides">
<div class="slide active-slide" data-slide="results"><img src="./img/info-slide-imgs/search-results.png" alt=""></div>
<div class="slide" data-slide="business"><img src="./img/info-slide-imgs/business-landing.png" alt=""></div>
<div class="slide" data-slide="bookmarks"><img src="./img/info-slide-imgs/bookmarks.png" alt=""></div>
</div>
</div>
</section>
<!-- Get Started -->
<section class="get-started">
<h2>Let's Go!</h2>
<p>Ready to embark on your quest for tacos?</p>
<a href="https://tacopedia.netlify.com"><button class="start-btn">Get Started</button></a>
</section>
<!-- Footer -->
<footer>
<div class="footer-wrap">
<a href="about.html">About Us</a>
</div>
</footer>
<script src="./Components/infotabs.js"></script>
<script src="./js/links.js"></script>
</body>
</html>