-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 1.38 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Linkedin Scraper</title>
<style>
*{
margin: 0px;
box-sizing: border-box;
}
body{
padding: 20px;
align-items: center;
display: flex;
}
button{
background-color: white;
height: 50px;
width: 100px;
border-radius: 10px;
box-shadow: rgba(0, 255, 255, 0.2) 0px 8px 24px;
border: none;
margin: 10px;
}
button:hover{
background-color: aqua;
color: white;
}
.heading{
align-items: center;
color: black;
font-family: 'Times New Roman', Times, serif;
}
li{
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
</style>
</head>
<body>
<h1 class="heading">LinkedScraper</h1>
<ol class="Insturctions">
<li>Goto a linkedIn profile-page.</li>
<li>Click on donwload.</li>
<li>It's that simple</li>
</ul>
<button id = 'download'>Download</button>
<script src="./index.js"></script>
</body>
</html>