-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
63 lines (49 loc) · 2.12 KB
/
popup.html
File metadata and controls
63 lines (49 loc) · 2.12 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Launcher</title>
<link rel="stylesheet" href="style.css ">
<link rel="icon" type="image/x-icon" href="icon.png">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="model-header">
<h1 class="logo">
<img src="/images/mohammadnaeemtahir.jpg" alt="launcher logo">
Muhammad Naeem Tahir
</h1>
</div>
<div class="model-content">
<p>Quick accsess to social media accounts</p>
</div>
<div class="model-icons">
<div class="flex-container">
<div class="flex">
<a href="https://www.linkedin.com/in/mohammadnaeemtahir/" target="_blank"><i
class="fa-brands fa-linkedin"></i></a>
</div>
<div class="flex">
<a href="https://twitter.com/m_naeemtahir" target="_blank"><i class="fa-brands fa-twitter"></i></a>
</div>
<div class="flex">
<a href="https://www.facebook.com/mohammadnaeemtahir/" target="_blank"><i
class="fa-brands fa-facebook"></i></a>
</div>
<div class="flex">
<a href="https://github.com/mohammadnaeemtahir" target="_blank"> <i class="fa-brands fa-github"></i></a>
</div>
<div class="flex">
<a href="https://www.kaggle.com/mohammadnaeemtahir" target="_blank"><i
class="fa-brands fa-kaggle"></i></a>
</div>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>