-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·108 lines (87 loc) · 3.03 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
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="apple-itunes-app" content="app-id=1028338163">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta http-equiv="cleartype" content="on">
<title>PhotoTrash</title>
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="responsive.css">
<link href='https://fonts.googleapis.com/css?family=Lato:400,100,100italic,300,300italic,400italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="hero">
<div class="container">
<div class="wrapper">
<img src="assets/logo.svg" class="logo">
</div>
<div class="wrapper">
<a href="https://itunes.apple.com/us/app/id1028338163"><img src="assets/cta.svg" class="cta"></a>
</div>
<div class="wrapper">
<img src="assets/iphone.png" class="iphone">
</div>
</div>
</div>
<div id="description">
<div class="container">
<p class="info">PhotoTrash is the best way to delete your photos, simply select the
album from which you want to delete photos and start swiping! Swipe
left to delete or right to keep, it really is that easy, fun and fast
to do. But that's not everything! PhotoTrash has lots of great features
that you'll love.</p>
</div>
</div>
<div id="features">
<div class="container">
<h2>Features<div></div></h2>
<div id="grid">
<div class="feature">
<div>
<img src="assets/trashInstruction.svg" class="illustration small trash">
</div>
<p>Swipe left to send to trash</p>
</div>
<div class="feature">
<div>
<img src="assets/keepInstruction.svg" class="illustration small keep">
</div>
<p>Swipe right to keep</p>
</div>
<div class="feature">
<div>
<img src="assets/likeInstruction.svg" class="illustration">
</div>
<p>Double tap to favorite</p>
</div>
<div class="feature">
<div>
<img src="assets/shareInstruction.svg" class="illustration">
</div>
<p>Long press to share</p>
</div>
<div class="feature">
<div>
<img src="assets/deleteAllInstruction.svg" class="illustration">
</div>
<p>Shake to delete all</p>
</div>
<div class="feature">
<div>
<img src="assets/undoInstruction.svg" class="illustration">
</div>
<p>Undo as much as you want</p>
</div>
</div>
</div>
</div>
<div id="download">
<div class="container">
<h1>Start swiping your photos now!</h1>
<a href="https://itunes.apple.com/us/app/id1028338163"><img src="assets/cta.svg" class="cta"></a>
</div>
</div>
</body>
</html>