-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
91 lines (83 loc) · 3.44 KB
/
blogs.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
<!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> Blogs ! Aviranjan</title>
<!-- link css -->
<link rel="stylesheet" href="style.css">
<!-- favicon icon -->
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
</head>
<body>
<!-- navbar section -->
<nav class="navigation conteinnar">
<div class="nav-brand">iamaviranjan</div>
<ul class="non-bullet nav-pills">
<li class="list-inline">
<a class="link" href="index.html">home</a>
</li>
<li class="list-inline">
<a href="neoGprojects.html">neog projects</a>
</li>
<li class="list-inline">
<a class="link link-active" href="blogs.html">Blogs</a>
</li>
<li class="list-inline">
<a class="link" href="pepcodingProject.html">pepcoding projects</a>
</li>
<li class="list-inline">
<a href="youtubeProjects.html">youtube projects</a>
</li>
</ul>
</nav>
<!-- header section -->
<header class="hero">
<h1 class="hero-heading"> my <span style="color: aquamarine;">Blogs</span> </h1>
</header>
<!-- blogs section -->
<ol>
<!-- blog 1 -->
<li>
<b>Dummy Blog One</b>
</li>
<small>August, 2020</small>
<p>
The most well-known dummy text is the 'Lorem Ipsum', which is said to have originated in the 16th century. Lorem Ipsum is composed in a pseudo-Latin language which more or less corresponds to 'proper' Latin. It contains a series of real Latin words.
</p>
<a class="link primary-link" href="blogs.html">Comming Soon</a>
<hr class="hr">
<!-- blog 2 -->
<li>
<b>Dummy Blog Two</b>
</li>
<small>August, 2020</small>
<p>
Dummy text: Its function as a filler or as a tool for comparing the visual impression of different typefaces Dummy text is text that is used in the publishing industry or by web designers to occupy the space which will later be filled with 'real' content. This is required when, for example, the final text is not yet available. Dummy text is also known as 'fill text'.
</p>
<a class="link primary-link" href="blogs.html">Comming Soon</a>
</ol>
<!-- footer section -->
<footer class="footer">
<div class="footer-header">Connect With Me </div>
<ul class="social-links">
<li class="list-inline">
<a class="link" href="https://www.instagram.com/aviranjan07/">Instagram</a>
</li>
<li class="list-inline" >
<a class="link" href="https://www.linkedin.com/in/aviranjan-das-8121a2211">Linkedin</a>
</li>
<li class="list-inline">
<a class="link" href="https://twitter.com/aviranjan_das?s=08">Twitter</a>
</li>
<li class="list-inline">
<a class="link" href="https://github.com/aviranjan07">github</a>
</li>
<li class="list-inline">
<a class="link" href="https://www.youtube.com/channel/UCRG7g3RNvTL94kS8GnWIujA">youtube</a>
</li>
</ul>
</footer>
</body>
</html>