-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy patharticles_page_old.html
119 lines (114 loc) · 4.84 KB
/
articles_page_old.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
<!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>Document</title>
<link rel="stylesheet" href="articles_page_old.css">
</head>
<body>
<div class="container">
<div class="articles-headings">
<h1>ARTICLES</h1>
</div>
<div class="articles-content">
<div class="article">
<!-- start -->
<!-- <section class="info">
<img src="https://codetheweb.blog/assets/img/icon2.png">
<h1>Learn HTML — <a href="https://codetheweb.blog/" target="_blank">Code The Web</a></h1>
</section> -->
<section class="cards-wrapper">
<div class="card-grid-space">
<div class="num">01</div>
<a class="card" href="https://codetheweb.blog/2017/10/06/html-syntax/"
style="--bg-img: url('https://img.collegepravesh.com/2021/11/IIIT-Lucknow.jpg');">
<div>
<h1>HTML Syntax</h1>
<p>The syntax of a language is how it works. How to actually write it. Learn HTML syntax…</p>
<div class="date" style="color: white;">6 Oct 2017</div>
<div class="tags">
<div class="tag">HTML</div>
</div>
</div>
</a>
</div>
<div class="card-grid-space">
<div class="num">02</div>
<a class="card" href="https://codetheweb.blog/2017/10/09/basic-types-of-html-tags/"
style="--bg-img: url('https://img.collegepravesh.com/2021/11/IIIT-Lucknow.jpg')">
<div>
<h1>Basic types of HTML tags</h1>
<p>Learn about some of the most common HTML tags…</p>
<div class="date" style="color: white;">9 Oct 2017</div>
<div class="tags">
<div class="tag">HTML</div>
</div>
</div>
</a>
</div>
<div class="card-grid-space">
<div class="num">03</div>
<a class="card" href="https://codetheweb.blog/2017/10/09/basic-types-of-html-tags/"
style="--bg-img: url('https://img.collegepravesh.com/2021/11/IIIT-Lucknow.jpg')">
<div>
<h1>Basic types of HTML tags</h1>
<p>Learn about some of the most common HTML tags…</p>
<div class="date" style="color: white;">9 Oct 2017</div>
<div class="tags">
<div class="tag">HTML</div>
</div>
</div>
</a>
</div>
<div class="card-grid-space">
<div class="num">04</div>
<a class="card" href="https://codetheweb.blog/2017/10/09/basic-types-of-html-tags/"
style="--bg-img: url('https://img.collegepravesh.com/2021/11/IIIT-Lucknow.jpg')">
<div>
<h1>Basic types of HTML tags</h1>
<p>Learn about some of the most common HTML tags…</p>
<div class="date" style="color: white;">9 Oct 2017</div>
<div class="tags">
<div class="tag">HTML</div>
</div>
</div>
</a>
</div>
<div class="card-grid-space">
<div class="num">05</div>
<a class="card" href="https://codetheweb.blog/2017/10/09/basic-types-of-html-tags/"
style="--bg-img: url('https://img.collegepravesh.com/2021/11/IIIT-Lucknow.jpg')">
<div>
<h1>Basic types of HTML tags</h1>
<p>Learn about some of the most common HTML tags…</p>
<div class="date" style="color: white;">9 Oct 2017</div>
<div class="tags">
<div class="tag">HTML</div>
</div>
</div>
</a>
</div>
<div class="card-grid-space">
<div class="num">06</div>
<a class="card" href="https://codetheweb.blog/2017/10/14/links-images-about-file-paths/"
style="--bg-img: url('https://img.collegepravesh.com/2021/11/IIIT-Lucknow.jpg')">
<div>
<h1>Basic types of HTML tags</h1>
<p>Learn how to use links and images along with file paths…</p>
<div class="date" style="color: white;">14 Oct 2017</div>
<div class="tags">
<div class="tag">HTML</div>
</div>
</div>
</a>
</div>
<!-- https://images.unsplash.com/photo-1520839090488-4a6c211e2f94?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=38951b8650067840307cba514b554ba5&auto=format&fit=crop&w=1350&q=80 -->
</section>
<!-- end -->
</div>
</div>
</div>
</body>
</html>