-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
101 lines (80 loc) · 2.78 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
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>My-brand Blogs</title>
<link rel="stylesheet" href="./styles/main.css" />
<link rel="stylesheet" href="./styles/responsive.css" />
<link rel="stylesheet" href="./styles/loader.css">
</head>
<body>
<div class="container">
<nav>
<a href="./index.html">
<h1 class="logo">MY_<span>BRAND</span></h1>
</a>
<ul id="navbar" class="links">
<li><a href="./index.html">Home</a></li>
<li><a href="./contactus.html">Contact Us</a></li>
<li><a href="./aboutus.html">About Us</a></li>
<li><a href="./portfolio.html">Portfolio</a></li>
<li><a href="./blogs.html">Blogs</a></li>
<li><a href="./admin/signin.html">Sign In</a></li>
</ul>
<ul id="navbarphone" class="linksphone">
<li><a href="./">Home</a></li>
<li><a href="contactus.html">Contact Us</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="./blogs.html">Blogs</a></li>
<li><a href="./admin/signin.html">Sign in</a></li>
</ul>
<div id="toggle" class="toggle">
<svg
width="26"
height="24"
viewBox="0 0 26 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M1.52478 1H25M1.52478 12H25M1.52478 23H25"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</div>
</nav>
<main>
<!-- hero section -->
<!-- exprience section -->
<!-- choose me section -->
<!-- testimonials -->
<!-- insight / blogs -->
<div class="insights">
<div class="insights-header">
<h1>Insights & Innovations</h1>
<span
>Explore our latest thoughts on technology trends, development
insights, and the future of software innovation .</span
>
</div>
<div class="insights-main" id="ii">
</div>
<div class="loading-wave" >
<div class="loading-bar"></div>
<div class="loading-bar"></div>
<div class="loading-bar"></div>
<div class="loading-bar"></div>
</div>
</div>
<!-- contact us -->
</main>
</div>
<script src="blogs.js"></script>
<script src="main.js"></script>
</body>
</html>