-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
101 lines (95 loc) · 2.35 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JavaScript Web Scraping by Pradip Chaudhary</title>
<style>
/* Google fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* Browser reset */
* {
margin: 0;
bottom: 0;
box-sizing: border-box;
}
body {
padding: 0;
margin: 0;
font-family: "Roboto", sans-serif;
font-size: 16px;
line-height: 1.5;
}
.page-header {
color: #efefef;
background-color: #005ff9;
background-image: unset;
background: url(../images/page-header-background.png) no-repeat center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
width: 100%;
height: 380px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.main-content h1,
.main-content h2,
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6 {
color: #333;
}
a {
/* color: #4f5b93; */
color: #1f6feb;
}
.project-name {
font-size: 3.25rem;
margin-top: 0;
margin-bottom: 0.1rem;
color: #ffff;
}
.project-tagline {
font-size: 1.25rem;
margin-bottom: 2rem;
font-weight: 200;
opacity: 0.7;
}
.btn {
display: inline-block;
margin-bottom: 1rem;
color: rgba(255, 255, 255, 0.7);
background-color: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.2);
border-style: solid;
border-width: 1px;
border-radius: 0.3rem;
transition: color 0.2s, background-color 0.2s, border-color 0.2s;
padding: 0.75rem 1rem;
text-decoration: none;
}
.btn:hover {
color: #efefef;
}
</style>
</head>
<body>
<header class="page-header" role="banner">
<h1 class="project-name">JavaScript Web Scraping</h1>
<h2 class="project-tagline">
JavaScript Web Scraping: Uncover, Transform, Succeed.
</h2>
<a
href="https://github.com/pradipchaudhary/JavaScript-Web-Scraping/tree/1.0.0"
target="_blank"
class="btn"
>View on GitHub</a
>
</header>
</body>
</html>