-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsuccess.html
100 lines (97 loc) · 3.72 KB
/
success.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>
<title>Squat Counter</title>
<!-- don't mind these: -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href='https://unpkg.com/boxicons@2.0.9/css/boxicons.min.css' rel='stylesheet'>
<link rel="shortcut icon" href="#">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {
text-align: center;
background: thistle;
}
.twitter {
height: 40px;
width:40px;
background: #00Acee;
margin-top: 5px;
border-radius: 5px;
}
a {
text-decoration: none;
color: white;
}
h1 {
color: teal;
font-family: 'Space Grotesk', sans-serif;
font-size: 50px;
}
h3 {
color: white;
font-family: 'Space Grotesk', sans-serif;
font-size: 30px;
}
p {
color: teal;
font-family: 'Space Grotesk', sans-serif;
font-size: 20px;
}
.nav {
display: block;
margin-left: auto;
margin-right: auto;
height: 50px;
width: 199px;
font-family: 'Space Grotesk', sans-serif;
margin-top: 20px;
margin-bottom: 10px;
font-size: 20px;
border-radius: 10px;
background-color: teal;
border: 2px solid thistle;
color: thistle;
}
button:hover{
color: teal;
background-color: thistle;
border: 2px solid teal;
}
ul.share-buttons{
list-style: none;
padding: 0;
}
ul.share-buttons li{
display: inline;
}
ul.share-buttons .sr-only{
position: absolute;
clip: rect(1px 1px 1px 1px);
clip: rect(1px, 1px, 1px, 1px);
padding: 0;
border: 0;
height: 1px;
width: 1px;
overflow: hidden;
}
</style>
</head>
<body>
<i style="font-size: 90px;" class='bx bx-dumbbell'></i>
<h1>Go you!</h1>
<h3>You have completed your mini-workout with impeccable technique.</h3>
<p>Share your achievement online:
<ul class="share-buttons" data-source="simplesharingbuttons.com">
<li><a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Ferxn-mcg.github.io%2Fjimmygymbuddy%2F"e=Jimmy%20Gym%20Buddy" target="_blank" title="Share on Facebook"><i class="fa fa-facebook-square fa-2x" aria-hidden="true"></i><span class="sr-only">Share on Facebook</span></a></li>
<li><a href="https://twitter.com/intent/tweet?source=https%3A%2F%2Ferxn-mcg.github.io%2Fjimmygymbuddy%2F&text=Jimmy%20Gym%20Buddy:%20https%3A%2F%2Ferxn-mcg.github.io%2Fjimmygymbuddy%2F" target="_blank" title="Tweet"><i class="fa fa-twitter-square fa-2x" aria-hidden="true"></i><span class="sr-only">Tweet</span></a></li>
<li><a href="mailto:?subject=Jimmy%20Gym%20Buddy&body=I%20completed%20my%20workout%20%20with%20Jimmy%20Gym%20Buddy!:%20https%3A%2F%2Ferxn-mcg.github.io%2Fjimmygymbuddy%2F" target="_blank" title="Send email"><i class="fa fa-envelope fa-2x" aria-hidden="true"></i><span class="sr-only">Send email</span></a></li>
</ul>
<a href="exercise.html"><button class="nav">Do Another!</button></a>
<a href="page.html"><button class="nav">Go home</button></a>
</p>
</body>