-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
43 lines (43 loc) · 1.88 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
<html style="height: 300">
<head>
<title>Puppy Safe</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<!-- Google font imports -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;500&display=swap"
rel="stylesheet"
/>
<!-- Font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body id="body">
<header>
<i title="settings" class="fa fa-cog"></i>
</header>
<div id="main-body">
<div class="body-content home">
<div id="img-box">
<img src="./puppy.png" />
</div>
<h3 style="font-size:24px; color: rgb(87, 67, 26);">Messaging on the internet has never been safer!</h3>
<p style="color:rgb(77, 77, 77)">The #1 messaging cybersecurity platform for parents and kids.</p>
</div>
</div>
<footer>
<div id="icon-box">
<a href="flagged.html"><button class="icon-button flagged"><i title="view flagged messages" class="fa fa-flag" style="font-size:25px"></i><p>FLAGGED</p></button></a>
<a href="index.html"></a><button class="icon-button home"><i title="home" class="fa fa-home" style="font-size:25px"></i><p>HOME</p></button><a href=""></a>
<a href="reports.html"><button class="icon-button reports"><i title="view reports" class="fa fa-file" style="font-size:25px"></i><P>REPORTS</P></button></a>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>