-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (90 loc) · 4.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0" />
<title>ShareTo - Easy Sharing</title>
<script src="js/jquery.min.js"></script>
<!-- CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="css/materialize.min.css" type="text/css" rel="stylesheet" media="screen,projection" />
<link href="css/styles.css" type="text/css" rel="stylesheet" media="screen,projection" />
</head>
<body>
<header>
<div class="section" id="index-banner">
<div class="container">
<div style="text-align: center;">
<img src="images/shareto.svg" alt="shareto-logo" style="height: 30px; vertical-align: middle;">
<h1 class="center teal-text flow-text" style=" display: inline; vertical-align: middle;">
ShareTo
</h1>
</div>
</div>
</div>
</header>
<main>
<div class="container" style="margin-bottom: -60px;">
<div class="section">
<!-- Icon Section -->
<div class="row">
<div class="waves-effect waves-light col s3 l1" id="facebook">
<img src="images/facebook-logo.svg" alt="facebook logo" style="height: 40px;">
</div>
<div class="waves-effect waves-light col s3 l1" id="messenger">
<img src="images/messenger-logo.svg" alt="messenger logo" style="height: 40px;">
</div>
<div class="waves-effect waves-light col s3 l1" id="twitter">
<img src="images/twitter-logo.svg" alt="twitter logo" style="height: 40px;">
</div>
<div class="waves-effect waves-light col s3 l1" id="vk">
<img src="images/vk-logo.svg" alt="vk logo" style="height: 40px;">
</div>
</div>
<div class="row">
<div class="waves-effect waves-light col s3 l1" id="externalEmail">
<img src="images/email.svg" alt="email logo" style="height: 40px;">
</div>
<div class="waves-effect waves-light col s3 l1" id="outlook">
<img src="images/outlook-logo.svg" alt="outlook logo" style="height: 40px;">
</div>
<div class="waves-effect waves-light col s3 l1" id="gmail">
<img src="images/gmail-logo.svg" alt="gmail logo" style="height: 40px;">
</div>
<div class="waves-effect waves-light col s3 l1" id="reddit">
<img src="images/reddit-logo.svg" alt="reddit logo" style="height: 40px;">
</div>
</div>
<div class="row center">
<p class="header col s12" style="font-size: small;">
<a href="history.html"
class="waves-effect waves-light btn-small btn-flat orange-text text-lighten-2">
<i class=" material-icons left">history</i>See share history
</a>
</p>
</div>
</div>
</div>
</main>
<footer class="page-footer teal">
<div class="container">
<div class="row">
<div class="col 12" style="padding-top: 0px !important; margin-bottom: -20px; margin-top: -20px;">
<h5 class="white-text flow-text">ShareTo - Easy Sharing!</h5>
<p class="grey-text text-lighten-4">This is a project for HSE's Programming course.</p>
</div>
</div>
</div>
<div class="footer-copyright" style="padding-bottom: 7px;">
<div class="container">
<p>Made by <a class="orange-text text-lighten-2" name="test"
href="https://github.com/mr-propre/ShareTo">Lucas
Pierru</a><i> (use Ctrl+Click to open hyperlinks)</i></p>
</div>
</div>
</footer>
<!-- Scripts-->
<script src="js/materialize.min.js"></script>
<script src="js/logic.js"></script>
</body>
</html>