-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·100 lines (77 loc) · 2.78 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
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Sentimental | Emotions Analyzed</title>
<link rel="shortcut icon" href="sentimental.png" type="image/x-icon">
<meta name="msapplication-TileColor" content="#663fb5">
<meta name="msapplication-config" content="img/favicon/browserconfig.xml">
<meta name="theme-color" content="#663fb5">
<link rel="stylesheet" href="landio.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<style>
.material-icons.md-18 {
font-size: 18px;
}
.material-icons.md-24 {
font-size: 24px;
}
.material-icons.md-36 {
font-size: 36px;
}
.material-icons.md-48 {
font-size: 48px;
}
</style>
</head>
<body>
<!-- Navigation
================================================== -->
<!-- Hero Section
================================================== -->
<header class="bg-white bg-inverse text-xs-center center-vertically" role="banner">
<div class="container">
<h1 class="display-3"><img
src="sentimental.png" height="100px"
style="margin-top: 40px;"></h1>
<br>
<h2 class="m-b-3" style="color: black">Sentimental | The sentiment analysis tool for iOS</h2>
<a class="btn btn-secondary-outline m-b-1" style="border-color: grey; color: saddlebrown" href="mailto:emailaddress" role="button">Download Now</a>
</div>
</header>
<!-- Intro
================================================== -->
<!-- Features
================================================== -->
<!-- Testimonials
================================================== -->
<!-- Text Content
================================================== -->
<!-- News
================================================== -->
<!-- Sign Up
================================================== -->
<!-- Footer
================================================== -->
<footer class="section-footer bg-inverse" role="contentinfo">
<div class="container">
<div class="row">
<div class="col-md-6 col-lg-5">
<div class="media">
<small class="media-body media-bottom">
© Sentimental 2017 <br>
Designed and developed by Nikit Phadke
</small>
</div>
</div>
<div class="col-md-6 col-lg-7">
</div>
</div>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="landio.min.js"></script>
</body>
</html>