-
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
157 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<!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>Web Project</title> | ||
|
||
<!--Style--> | ||
<link rel="stylesheet" href="style.css" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://unicons.iconscout.com/release/v4.0.0/css/line.css" | ||
/> | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<!--End Of Style--> | ||
</head> | ||
<body> | ||
<!--Navbar--> | ||
<nav> | ||
<div class="container nav_container"> | ||
<a href="index.html" class="nav_logo">Web</a> | ||
<ul class="nav_items"> | ||
<li><a href="blog.html">Blog</a></li> | ||
<li><a href="about.html">About</a></li> | ||
<li><a href="services.html">Services</a></li> | ||
<li><a href="contact.html">Contact</a></li> | ||
<!-- <li><a href="signin.html">Sign In</a></li> --> | ||
<li class="nav_profile"> | ||
<div class="avatar"> | ||
<img src="./images/avatar1.jpg" alt="Image not found" /> | ||
</div> | ||
<ul> | ||
<li><a href="dashboard.html">Dashboard</a></li> | ||
<li><a href="logout.html">Log Out</a></li> | ||
</ul> | ||
</li> | ||
</ul> | ||
|
||
<button id="open_nav-btn"><i class="uil uil-bars"></i></button> | ||
<button id="close_nav-btn"><i class="uil uil-multiply"></i></button> | ||
</div> | ||
</nav> | ||
<!--End Of Navbar--> | ||
|
||
|
||
<section class="form_section"> | ||
<div class="container form_section-container"> | ||
<h2>Add Category</h2> | ||
<div class="alert_message error"> | ||
<p>This is an error message</p> | ||
</div> | ||
<form action=""> | ||
<input type="text" placeholder="Title" /> | ||
<textarea rows="4" placeholder="Description"></textarea> | ||
<button class="btn" type="submit">Add Category</button> | ||
</form> | ||
</div> | ||
</section> | ||
|
||
<script src="main.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
<!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>Web Project</title> | ||
|
||
<!--Style--> | ||
<link rel="stylesheet" href="style.css" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://unicons.iconscout.com/release/v4.0.0/css/line.css" | ||
/> | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<!--End Of Style--> | ||
</head> | ||
<body> | ||
<!--Navbar--> | ||
<nav> | ||
<div class="container nav_container"> | ||
<a href="index.html" class="nav_logo">Web</a> | ||
<ul class="nav_items"> | ||
<li><a href="blog.html">Blog</a></li> | ||
<li><a href="about.html">About</a></li> | ||
<li><a href="services.html">Services</a></li> | ||
<li><a href="contact.html">Contact</a></li> | ||
<!-- <li><a href="signin.html">Sign In</a></li> --> | ||
<li class="nav_profile"> | ||
<div class="avatar"> | ||
<img src="./images/avatar1.jpg" alt="Image not found" /> | ||
</div> | ||
<ul> | ||
<li><a href="dashboard.html">Dashboard</a></li> | ||
<li><a href="logout.html">Log Out</a></li> | ||
</ul> | ||
</li> | ||
</ul> | ||
|
||
<button id="open_nav-btn"><i class="uil uil-bars"></i></button> | ||
<button id="close_nav-btn"><i class="uil uil-multiply"></i></button> | ||
</div> | ||
</nav> | ||
<!--End Of Navbar--> | ||
|
||
|
||
<section class="form_section"> | ||
<div class="container form_section-container"> | ||
<h2>Add Post</h2> | ||
<div class="alert_message error"> | ||
<p>This is an error message</p> | ||
</div> | ||
<form action="" enctype="multipart/form-data"> | ||
<input type="text" placeholder="Title" /> | ||
<select> | ||
<option value="1">Wild Life</option> | ||
<option value="2">Travel</option> | ||
<option value="3">Art</option> | ||
</select> | ||
<textarea rows="10" placeholder="body"></textarea> | ||
<div class="form_control inline"> | ||
<input type="checkbox" id="is_featured" checked> | ||
<label for="is_featured">Featured</label> | ||
</div> | ||
<div class="form_control"> | ||
<label for="thumbnail">Add Photo</label> | ||
<input type="file" id="thumbnail"> | ||
</div> | ||
<button class="btn" type="submit">Add Post</button> | ||
</form> | ||
</div> | ||
</section> | ||
|
||
|
||
<script src="main.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
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