forked from DSC-JSS-NOIDA/blogzen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (100 loc) · 4.29 KB
/
index.html
File metadata and controls
119 lines (100 loc) · 4.29 KB
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>Blogzen</title>
<link rel="shortcut icon" href="./img/favicon.ico" type="image/x-icon">
<script src="https://kit.fontawesome.com/d1c523657e.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/navbar.css" />
<link rel="stylesheet" href="css/sec1.css" />
<link rel="stylesheet" href="css/sec2.css" />
<link rel="stylesheet" href="css/sec3.css" />
<link rel="stylesheet" href="css/sec4.css" />
<script src="./js/Landingpage.js"></script>
<!-- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous"> -->
</head>
<body>
<!-- Navbar ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<div class="navbar">
<div class="navs1">
<a href="index.html"><img src="img/final logo 1.png" alt="" /></a>
<div class="span1"><a href="index.html">Blogzen</a></div>
<!-- <div class="span2"><a href="index.html">zen</a></div> -->
</div>
<div class="navs2">
<!-- <img src="img/final logo 1.png" alt="" /> -->
<img src="assests/moon.png" alt="image" id="themeImg">
<button class="navbtn1 txtColor">Log In</button>
<button class="navbtn1 txtColor" style="background-color: #7D41E2">Sign Up</button>
<button class="navbtn1 txtColor" style="background-color: #7D41E2">
<i class="fa-solid fa-calendar-days"></i>
<span>Calendar</span>
</button>
</div>
</div>
<!-- Sec-1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<div class="sec1">
<div class="s1part1">
<span class="auto-type"></span>
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.12"></script>
<script>
var typed = new Typed(".auto-type", {
strings: ["Blogzen!!"],
typeSpeed: 150,
backspeed: 150,
loop: true
})
</script>
</div>
<input class="search" placeholder="Search"></input>
<div class="s1part2">
<button class="s1btn1">All</button>
<a href="">Technology</a>
<a href="">Branding</a>
<a href="">News</a>
<a href="">AI</a>
<a href="">Management</a>
<a href="">Design</a>
</div>
</div>
<!-- Sec-2 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<div class="sec2buttons">
<button class="sec2btn2" style="background-color: #ff765d; color: white">
Trending
</button>
<button class="sec2btn2 sec2btn2-recent">Recent</button>
</div>
<div class="sec2" id="sec2">
</div>
<!-- Sec-3 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<div id="tbody" class="flex">
</div>
</div>
<!-- Sec-4 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<div class="footer">
<div class="socials">
<div class="footer_title">Follow us on our socials</div>
<div class="icons">
<div class="icon"><a href=""><img src="assests/instagram.svg" alt=""></a></div>
<div class="icon"><a href=""><img src="assests/twitter.svg" alt=""></a></div>
<div class="icon"><a href=""><img src="assests/spotify.svg" alt=""></a></div>
</div>
</div>
<div class="newsletter">
<div class="footer_title">Subscribe to our newsletter</div>
<form>
<input type="text" id="emailId" name="email" placeholder="Your Email">
<button type="submit">Subscribe</button>
</form>
</div>
<div class="contact">
<div class="footer_title">Contact Us</div>
<h2><a href="mailto:Blogzen@gmail.com">Blogzen@gmail.com</a></h2>
</div>
</div>
<script src="js/theme.js"></script>
</body>
<!-- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script> -->
</html>