-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
209 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Blog website</title> | ||
<!-- font icon --> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"/> | ||
<!-- bootstrap --> | ||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"> | ||
<!-- main --> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<section id="header"> | ||
<div class="container-fluid header-bg gx-0"> | ||
<div class="row"> | ||
<div class="col-lg-12"> | ||
<div class="header-area"> | ||
<div class="header-content"> | ||
<div class="header-logo"> | ||
<img src="img/Health_and_Fitness__2_-removebg-preview.png" alt="logo img"> | ||
</div> | ||
<div class="header-menu"> | ||
<nav> | ||
<ul> | ||
<li><a href="">Home</a></li> | ||
<li><a href="">Blogs</a></li> | ||
<li><a href="">Privacy Policy</a></li> | ||
<li><a href="">Terms & Conditions</a></li> | ||
</ul> | ||
</nav> | ||
</div> | ||
<div class="header-search"> | ||
<i class="fa-solid fa-magnifying-glass search-icon"></i> | ||
<i class="fa-solid fa-xmark close-icon"></i> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="search-box"> | ||
<form action="" class="search-content"> | ||
<input type="text" class="search-text" placeholder="Search Here"> | ||
<input type="submit" value="Search" class="search-btn"> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</section> | ||
|
||
<section id="main-content"> | ||
<div class="main-website"> | ||
<div class="container"> | ||
<!-- list post area --> | ||
<div class="row my-5"> | ||
<div class="col-lg-8 post-box"> | ||
<h3 class="title">Page Title</h3> | ||
|
||
</div> | ||
<div class="col-lg-3"> | ||
<div class="sidebar"> | ||
<div class="sidebar-box"> | ||
<h3>About Me</h3> | ||
</div> | ||
<div class="sidebar-box"> | ||
<h3>Featured Post</h3> | ||
</div> | ||
<div class="sidebar-box"> | ||
<h3>Search this blog</h3> | ||
</div> | ||
|
||
<div class="sidebar-box"> | ||
<h3>Archived</h3> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
</section> | ||
|
||
<!-- footer --> | ||
<section id="footer-section"> | ||
<div class="main-website"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-lg-12 footer-content"> | ||
<div class="footer-logo"> | ||
<img src="img/Health_and_Fitness__2_-removebg-preview.png" alt=""> | ||
</div> | ||
<div class="footer-text px-3"> | ||
<h2>About Us</h2> | ||
<p>Enjoy our blogs</p> | ||
</div> | ||
<div class="footer-menu"> | ||
<ul> | ||
<li><a href="">Home</a></li> | ||
<li><a href="">About Us</a></li> | ||
<li><a href="">Contact Us</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row mt-4"> | ||
<div class="col-lg-9"> | ||
<div class="copyright"> | ||
<p>©copyright 2023 | All Rights Reserved</p> | ||
</div> | ||
</div> | ||
<div class="col-lg-3"> | ||
<div class="dev-text"> | ||
<p>Developed By-<a href="">ZA SOFT</a></p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
|
||
<script src="js/jquery-3.6.4.min.js"></script> | ||
<script src="js/myscript.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters