forked from Aditya-269/BloggingSite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (81 loc) · 3.51 KB
/
index.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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog</title>
<link rel="stylesheet" href="index.css">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/0c9f2a40ff.js" crossorigin="anonymous"></script>
</head>
<body>
<header class="ourheader">
<div class="container">
<div class="logo">
<h1><a href="#">Inkspire</a></h1>
</div>
<nav>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="dashboard.html">Dashboard</a></li>
<li><a href="blog.html">Add Post</a></li>
<!-- Dropdown for User Menu -->
<li class="dropdown">
<a href="#" class="dropdown-toggle">
<i class="fa fa-user"></i> <span id="username">Guest</span>
<i class="fa fa-chevron-down"></i>
</a>
<ul class="dropdown-menu">
<li><a href="login.html" id="login-link">Login</a></li>
<li><a href="#" class="logout" id="logout-link" style="display: none;">Logout</a></li>
</ul>
</li>
</ul>
</nav>
</div>
</header>
<main class="container">
<section class="blog-section">
<h1 class="blog-title">Latest Stories</h1>
<div id="blog-list" class="blog-list">
<!-- Blog posts will be dynamically added here -->
</div>
</section>
</main>
<footer class="minimal-footer">
<div class="container">
<!-- Footer Main Content -->
<div class="footer-content">
<!-- About Section -->
<div class="footer-section about">
<h1 class="logo-text">Inkspire</h1>
<p>Details</p>
<div class="contact">
<span><i class="fas fa-phone"> 123-456-789</i></span>
<span><i class="fas fa-envelope"> [email protected]</i></span>
</div>
<div class="socials">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
</div>
</div>
<!-- Contact Form Section -->
<div class="footer-section contact-form">
<h2>Contact Us</h2>
<form action="index.html" method="post">
<input type="email" name="email" class="text-input contact-input" placeholder="Your email address..">
<textarea rows="4" name="message" class="text-input contact-input" placeholder="Your message..."></textarea>
<button type="submit" class="btn btn-big contact-btn">
<i class="fas fa-envelope"></i> Send
</button>
</form>
</div>
</div>
</div>
<!-- Footer Bottom Content -->
<p>© 2024 Inkspire. All Rights Reserved.</p>
</footer>
<script src="index.js"></script>
</body>
</html>