-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (20 loc) · 732 Bytes
/
index.html
File metadata and controls
24 lines (20 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<title>Scraper</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<h1>Web Scraper</h1>
<form id="urlform">
<input type="url" placeholder="Enter Url" name="url" id="urlfield" value="http://google.com">
<button type="submit" id="button">Scrape Now</button>
</form>
<!-- You can also require other files to run in this process -->
<script src="./renderer.js"></script>
</body>
</html>