-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
53 lines (43 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans" type="text/css">
<link rel="stylesheet" href="style.css">
<title>MY App Launcher Chrome Extension.</title>
</head>
<body>
<section>
<div class="header">
<h1 class="logo">
<img src="/image/logo.png" alt="Launcher Logo"> GULAM's APP LAUNCHER <span class="version">(1.0.1)</span>
</h1>
</div>
<div class="content">
<p><b> 😊 Quickly Launch Following Apps : 😊 </b></p>
</div>
<div class="icons">
<div class="flex-container">
<div class="flex">
<a href="https://mail.google.com/mail/u/0/#inbox" target="_blank"><i id="fa1" class="fa fa-envelope" aria-hidden="true"></i></a>
</div>
<div class="flex">
<a href="https://www.youtube.com/channel/UCrlH1_iC7L6aqGkeNTtXNfg" target="_blank"><i id="fa2" class="fa fa-youtube-play" aria-hidden="true"></i></a>
</div>
<div class="flex">
<a href="https://www.linkedin.com/feed/" target="_blank"><i id="fa3" class="fa fa-linkedin-square" aria-hidden="true"></i></a>
</div>
<div class="flex">
<a href="https://www.facebook.com/profile.php?id=100012327944271 " target="_blank"><i id="fa4" class="fa fa-facebook-official" aria-hidden="true"></i></a>
</div>
<div class="flex">
<a href="hhttps://github.com/gulamansari57181" target="_blank"><i id="fa5" class="fa fa-github" aria-hidden="true"></i></a>
</div>
</div>
</div>
</section>
<script src="popup.js"></script>
</body>
</html>