-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
56 lines (46 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Developer's Shelf</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans" type="text/css">
<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" type="text/css" href="style.css">
</head>
<body>
<div class="modal-header">
<h1 class="logo">
<img src="images/icon_512.png" alt="MainLogo" class="logo-icon"> Developer's Shelf
</h1>
</div>
<div class="modal-content">
<p>Ready to start coding?</p>
</div>
<div class="modal-icons">
<div class="flex-container">
<div class="flex">
<a href="https://stackoverflow.com/" target="_blank">
<i class="fa fa-stack-overflow"></i>
</a>
</div>
<div class="flex">
<a href="https://github.com/" target="_blank">
<i class="fa fa-github"></i>
</a>
</div>
<div class="flex">
<a href="https://www.linkedin.com/feed/" target="_blank">
<i class="fa fa-linkedin"></i>
</a>
</div>
<div class="flex">
<a href="https://htmlcolorcodes.com/color-picker/" target="_blank">
<i class="fa fa-hashtag"></i>
</a>
</div>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>