-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
60 lines (60 loc) · 1.7 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sabrtraveler Launcher</title>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Open+Sans"
type="text/css"
/>
<link
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./popup.css" />
<script src="./popup.js" defer></script>
</head>
<body>
<div class="modal-header">
<h1 class="logo">
<img
src="./images/sabrtraveler-logo.png"
alt="Sabrtraveler Launcher"
class="logo-icon"
/>
Sabrtraveler Launcher <span class="version">(1.0.0)</span>
</h1>
</div>
<div class="modal-content">
<p>Easily access Sabrtravelers Professional content.</p>
</div>
<div class="modal-icons"></div>
<div class="flex-container">
<div class="flex">
<a
href="https://sabrtraveler.github.io/sabrtraveler.github.io/"
target="_blank"
>
<i class="fa fa-globe"></i
></a>
</div>
<div class="flex">
<a href="https://github.com/sabrtraveler" target="_blank">
<i class="fa fa-github"></i
></a>
</div>
<div class="flex">
<a
href="https://www.linkedin.com/in/robert-world-93783627/"
target="_blank"
>
<i class="fa fa-linkedin"></i
></a>
</div>
</div>
</body>
</html>