-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
66 lines (60 loc) · 2.23 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
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<title>My Profile Hub</title>
<link
href="https://fonts.googleapis.com/css?family=Open+Sans"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" href="assets/sparsh_profile_icon_big.png" type="image/png" sizes="30x30">
</head>
<body>
<div class="modal-header">
<h1>My Profile Hub <a class="btn" role="button" href="edit.html">Edit</a></h1>
</div>
<div class="modal-icons">
<div class="flex-container">
<div class="flex">
<a id="github_link" href="https://github.com/sparsh-99" target="_blank">
<img class= "pulse-grow-on-hover" src="./assets/logos/github.png">
</a>
<div class="flex">
<a id="facebook_link" href="https://www.facebook.com/mr.sparshgarg/" target="_blank">
<img class= "pulse-grow-on-hover" src="./assets/logos/facebook.png">
</a>
</div>
</div>
<div class="flex">
<a id="linkedin_link" href="https://www.linkedin.com/in/sparshgarg07/" target="_blank">
<img class= "pulse-grow-on-hover" src="./assets/logos/linkedin.png">
</a>
<div class="flex">
<a id="twitter_link" href="https://twitter.com/i_am_SparshGarg" target="_blank">
<img class= "pulse-grow-on-hover" src="./assets/logos/Twitter.png">
</a>
</div>
</div>
<div class="flex">
<a id="mail_link" href="https://mail.google.com/mail/u/0/#inbox" target="_blank">
<img class= "pulse-grow-on-hover" src="./assets/logos/mail2.png">
</a>
<div class="flex">
<a id="chitkara_link" href="https://punjab.chitkara.edu.in//Interface/index.php" target="_blank">
<img class= "pulse-grow-on-hover" src="./assets/logos/chitkara.png">
</a>
</div>
</div>
<!--
<div class="flex">
<a id="instagram_link" href="https://www.instagram.com/" target="_blank" >
<img class= "pulse-grow-on-hover" src="./assets/logos/instagram.png">
</a>
</div>
-->
</div>
</div>
<script src="popup.js"></script>
</body>
</html>