-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
135 lines (120 loc) · 7.61 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<title>Ahmed: Web scraping with Python using Requests, LXML and Splash</title>
</head>
<div class="Container">
<header>
<nav class="nav-bar">
<div class="nav-bar__menu">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</div>
<div class="nav-bar__search">
<a href="#">
<svg class="nav-bar__search__loop">
<use xlink:href="./symbol-defs.svg#icon-search" />
</svg>
</a>
</nav>
</header>
<main>
<article class="single-article">
<header class="header">
<img src="./img2.jpg" alt="" srcset="">
</header>
<section class="article-content">
<h1 class="title-article">Lorem Ipsum</h1>
<div class="author-meta">
<div class="thumbnail">
<img src="./ahmed.png" alt="" srcset="">
</div>
<div class="author-date">
<span class="author-name">Ahmed Rafik</span>
<time class="time"> 16 May 2019</time>
</div>
</div>
<p>It is a long established fact that a reader will be distracted by the readable content of a page
when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal
distribution of letters, as opposed to using 'Content here, content here', making it look like
readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as
their default model text, and a search for 'lorem ipsum' will uncover many web sites still in
their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on
purpose (injected humour and the like).</p>
<h2>The standard Lorem Ipsum passage used since</h2>
<p>It is a long established fact that a reader will be distracted by the readable content of a page
when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal
distribution of letters, as opposed to using 'Content here, content here', making it look like
readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as
their default model text, and a search for 'lorem ipsum' will uncover many web sites still in
their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on
purpose (injected humour and the like).</p>
<img src="" alt="">
<p class="quote">It is a long established fact that a reader will be distracted by the readable
content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a
more-or-less normal distribution of letters, as opposed to using 'Content here, content here',
making it look like readable English. Many desktop publishing packages and web page editors now
use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many
web sites still in their infancy. Various versions have evolved over the years, sometimes by
accident, sometimes on purpose (injected humour and the like)</p>
<p>It is a long established fact that a reader will be distracted by the readable content of a page
when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal
distribution of letters, as opposed to using 'Content here, content here', making it look like
readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as
their default model text, and a search for 'lorem ipsum' will uncover many web sites still in
their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on
purpose (injected humour and the like)</p>
<h2>The standard Lorem Ipsum passage used since</h2>
<p>It is a long established fact that a reader will be distracted by the readable content of a page
when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal
distribution of letters, as opposed to using 'Content here, content here', making it look like
readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as
their default model text, and a search for 'lorem ipsum' will uncover many web sites still in
their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on
purpose (injected humour and the like)</p>
<div class="author">
<div class="author-image">
<img src="./ahmed.png" alt="" srcset="">
</div>
<div class="author-bio">
<h2>Ahmed Rafik Djerah</h2>
<p> Many desktop publishing packages and web page editors now use Lorem Ipsum as their
default model text, and a search for 'lorem ipsum' will uncover many web sites still in
their infancy. Various versions have evolved over the years, sometimes by accident.</p>
</div>
</div>
<div class="social-icon">
<div class="button">
<a href="#">
<svg class="social-icon__facebook">
<use xlink:href="./symbol-defs.svg#icon-facebook" />
</svg>
</a>
</div>
<div class="button">
<a href="#">
<svg class="social-icon__twitter">
<use xlink:href="./symbol-defs.svg#icon-twitter" />
</svg>
</a>
</div>
<div class="button">
<a href="#">
<svg class="social-icon__github">
<use xlink:href="./symbol-defs.svg#icon-github" />
</svg>
</a>
</div>
</div>
</section>
</article>
<footer>
</footer>
</div>
</body>
</html>