-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArticles.html
163 lines (140 loc) · 6.18 KB
/
Articles.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!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>BirdzMusix</title>
<link rel="stylesheet" href="style.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="article.css">
<link rel="icon" type="image/x-icon" href="/images/logo.png">
</head>
<body id="body">
<header id="head">
<div class="logo">
<a href="index.html">
<img class="logo_img" id="logo_img" src="images/logo.png" alt="BirdzMusix">
<span class="loading"></span>
<span class="logo_txt" id="logo_txt">BirdzMusix</span>
</a>
</div>
<div class="nav">
<ul>
<li class="lst">
<a href="index.html">
<i class='bx bx-home-alt-2'></i>
<p class="txt">Home</p>
</a>
</li>
<li class="lst">
<a href="projects.html">
<i class='bx bxs-bar-chart-alt-2'></i>
<p class="txt">Projects</p>
</a>
</li>
<li class="lst">
<a href="#">
<i class='bx bx-code-alt'></i>
<p class="txt">Repositories</p>
</a>
</li>
<li class="lst">
<a href="Articles.html" target="_blank">
<i class='bx bx-spreadsheet'></i>
<p class="txt">Articles</p>
</a>
</li>
<li class="lst">
<a href="#">
<i class='bx bxs-phone-call'></i>
<p class="txt">Contact me</p>
</a>
</li>
<li class="lst">
<i id="moon" class='bx bxs-moon' style="position: relative; bottom: 3px; right: 2px; color: antiquewhite; font-size: 2.5vh;"> </i>
<p class=" txt" style="color: antiquewhite;">Mode</p>
<button type=" button" onclick="togglebtn()" id="btn" class="btn">
<span></span>
</button>
</li>
</ul>
</div>
<button id="xnd" class="btnexp" onclick="exapnd()"><i class='bx bx-chevron-right'></i></box-icon></button>
</header>
<div class="scroll" id="scrl">
<div class="sicky-bar"></div>
<section>
<h2>Another article</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Officiis </p>
<h2>Another article</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Officiis </p>
<h2>Another article</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Officiis </p>
<h2>Another article</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Officiis </p>
</section>
<main>
<div class="card">
<img src="images/images.jpeg" alt="">
<h3>This will be the heading of the article</h3>
<p>Article content goes like this.... Lorem ipsum dolor sit amet consectetur adipisicing </p>
</div>
<div class="card">
<img src="images/images.jpeg" alt="">
<h3>This will be the heading of the article</h3>
<p>Article content goes like this.... Lorem ipsum dolor sit amet consectetur adipisicing </p>
</div>
<div class="card">
<img src="images/images.jpeg" alt="">
<h3>This will be the heading of the article</h3>
<p>Article content goes like this.... Lorem ipsum dolor sit amet consectetur adipisicing </p>
</div>
<div class="card">
<img src="images/images.jpeg" alt="">
<h3>This will be the heading of the article</h3>
<p>Article content goes like this.... Lorem ipsum dolor sit amet consectetur adipisicing </p>
</div>
<div class="card">
<img src="images/images.jpeg" alt="">
<h3>This will be the heading of the article</h3>
<p>Article content goes like this.... Lorem ipsum dolor sit amet consectetur adipisicing </p>
</div>
</main>
<div class="social-media">
<h2 class="social-text" id="share">Connect</h2>
<p class="social-text">Share with your friends</p>
<ul>
<a href="https://www.linkedin.com/in/jai-mishra-85991a241/" target="_blank">
<li class="icon"><i class='bx bxl-linkedin'></i></li>
</a>
<a href="https://github.com/jai47" target="_blank">
<li class="icon"><i class='bx bxl-github'></i></li>
</a>
<a href="mailto:[email protected]" target="_blank">
<li class="icon"><i class='bx bxl-gmail'></i></li>
</a>
<a href="http://" target="_blank">
<li class="icon"><i class='bx bxl-instagram'></i></li>
</a>
<a href="http://" target="_blank">
<li class="icon"><i class='bx bxl-snapchat'></i></li>
</a>
</ul>
</div>
<footer class="foot">
<div>
<ul>
<img src="images/logo.png" alt="logo" style="height: 50px;">
<li><a href="#">Home</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">Repositories</a></li>
<li><a href="#">Follow me</a></li>
<li><a href="#">Contact me</a></li>
</ul>
</div>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>