-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
54 lines (47 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>t-hack</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<div style="background-color: rgba(0,0,0,0.7); padding: 5px;">
<h1 style="margin-bottom: 60px; border-style: solid; color: white; font-family: Verdana, Geneva, Tahoma, sans-serif; font-weight: 200;">Thankful.ly</h1>
</div>
<div class="mobile">
<div class="top"></div>
<div class="bottom"></div>
<div class="screen">
<img src="ty.png">
<ul>
<li><i class="fa fa-phone" aria-hidden="true"></i></li>
<li><i class="fa fa-comment-o" aria-hidden="true"></i></li>
<li><i class="fa fa-picture-o" aria-hidden="true"></i></li>
<li><i class="fa fa-camera" aria-hidden="true"></i></li>
</ul>
</div>
</div>
<div id="mySidenav" class="sidenav">
<a href="about/index.html" id="about">About <-</a>
<a href="stripecheckout/index.html" id="gift">Gift <---</a>
<a href="card-generator/index.html" id="thank">Thank <-</a>
<a href="sendmessage.html" id="contact">Text <---</a>
</div>
<h3 style="margin-top: 60px; border-style: solid; color: aliceblue;">click on the home button</h3>
<div id="page">
<div></div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.bottom').click(function(){
$('.screen').toggleClass('active')
})
})
</script>
<!-- partial -->
</body>
</html>