-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
35 lines (33 loc) · 1.54 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
<!DOCTYPE html>
<html>
<head>
<title>NewsSip</title>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<div class="wrapper">
<div class="header">
<h1 class="logo">
News Sip<span class="version"> 1.0.0</span>
</h1>
<img src="imgs/icon.png" alt="Logo" class="logo-icon"></img>
</div>
<div class="page-content text-center">
<div id="selectionTools">
<p class="mt-0">Easily search for alternate sources to any article.</p>
<h3>Click the button below and select any text to find an article.</h3>
<button id="selectPageBtn">Select Page Title</button>
<button id="cancelBtn" class="hidden">Cancel</button>
</div>
</div>
<div class="github">
<a href="https://github.com/cdconn00/news-sip" target="_blank">View on Github <i class="fa fa-github" aria-hidden="true"></i></a>
<p class="small text-center">Copyright © 2020 <a href="http://connellyc.com" target="_blank">Cole D. Connelly</a></p>
</div>
<div class="attribution">Icon made by <a href="https://www.flaticon.com/authors/freepik" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a></div>
</div>
<script type="text/javascript" src="popup.js"></script>
</body>
</html>