-
Notifications
You must be signed in to change notification settings - Fork 367
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #474 from iceybubble/main
perf courses.html
- Loading branch information
Showing
1 changed file
with
74 additions
and
139 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 |
---|---|---|
@@ -1,145 +1,80 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
|
||
<!-- | ||
- primary meta tags | ||
--> | ||
<title>SkillWise</title> | ||
<meta name="title" content="SkillWise" /> | ||
<meta | ||
name="description" | ||
content="This is a education html template made by Priya Ghosal" | ||
/> | ||
|
||
<!-- | ||
- favicon | ||
--> | ||
<link rel="shortcut icon" href="../favicon.svg" type="image/svg+xml" /> | ||
|
||
<!-- | ||
- custom font link | ||
--> | ||
<link rel="stylesheet" href="../assets/font/font.css" /> | ||
|
||
<!-- | ||
- custom css link | ||
--> | ||
<link rel="stylesheet" href="../assets/css/style.css" /> | ||
|
||
<!-- | ||
- preload images | ||
--> | ||
<link rel="preload" as="image" href="../assets/images/hero-banner.png" /> | ||
<link rel="preload" as="image" href="../assets/images/hero-bg.png" /> | ||
</head> | ||
<body> | ||
<!-- | ||
- PRELOADER | ||
--> | ||
|
||
<div class="preloader" data-preloader> | ||
<div class="circle" data-circle></div> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
|
||
<title>SkillWise</title> | ||
<meta name="description" content="This is an education HTML template made by Priya Ghosal" /> | ||
|
||
<link rel="shortcut icon" href="../favicon.svg" type="image/svg+xml" /> | ||
|
||
<link rel="stylesheet" href="../assets/font/font.css" /> | ||
|
||
<link rel="stylesheet" href="../assets/css/style.css" /> | ||
|
||
<link rel="preload" as="image" href="../assets/images/hero-banner.png" /> | ||
<link rel="preload" as="image" href="../assets/images/hero-bg.png" /> | ||
</head> | ||
<body> | ||
<div class="preloader" data-preloader> | ||
<div class="circle" data-circle></div> | ||
</div> | ||
|
||
<header class="header" data-header> | ||
<div class="container"> | ||
<a href="/"> <img | ||
src="../assets/images/Skillwise_logo.jpg" | ||
width="50" | ||
height="10" | ||
alt="SkillWise home" | ||
/> | ||
</a> | ||
|
||
<nav class="navbar" data-navbar> | ||
<div class="navbar-top"> | ||
<a href="/"> <img | ||
src="../assets/images/Skillwise_logo.jpg" | ||
width="50" | ||
height="10" | ||
alt="SkillWise home" | ||
/> | ||
</a> | ||
|
||
<button class="nav-close-btn" aria-label="close menu" data-nav-toggler> | ||
<ion-icon name="close-outline" aria-hidden="true"></ion-icon> | ||
</button> | ||
</div> | ||
|
||
<ul class="navbar-list"> | ||
<li class="navbar-item"> | ||
<a href="/" class="navbar-link title-sm" data-nav-link>Home</a> | ||
</li> | ||
<li class="navbar-item"> | ||
<a href="/pages/courses.html" class="navbar-link title-sm" data-nav-link>Courses</a> | ||
</li> | ||
<li class="navbar-item"> | ||
<a href="/pages/blog.html" class="navbar-link title-sm" data-nav-link>Blog</a> | ||
</li> | ||
<li class="navbar-item"> | ||
<a href="/pages/contact.html" class="navbar-link title-sm" data-nav-link>Contact</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
|
||
<a href="./signin.html" class="btn btn-secondary">Start Free Trial</a> | ||
|
||
<button class="nav-open-btn" aria-label="open menu" data-nav-toggler> | ||
<ion-icon name="menu-outline" aria-hidden="true"></ion-icon> | ||
</button> | ||
|
||
<div class="overlay" data-overlay data-nav-toggler></div> | ||
</div> | ||
</header> | ||
|
||
<!-- | ||
- #HEADER | ||
--> | ||
|
||
<header class="header" data-header> | ||
<div class="container"> | ||
<a> | ||
<img | ||
src="../assets/images/Skillwise_logo.jpg" | ||
width="50" | ||
height="10" | ||
alt="SkillWise home" | ||
/> | ||
</a> | ||
|
||
<nav class="navbar" data-navbar> | ||
<div class="navbar-top"> | ||
<a> | ||
<img | ||
src="../assets/images/Skillwise_logo.jpg" | ||
width="50" | ||
height="10" | ||
alt="SkillWise home" | ||
/> | ||
</a> | ||
|
||
<button | ||
class="nav-close-btn" | ||
aria-label="close menu" | ||
data-nav-toggler | ||
> | ||
<ion-icon name="close-outline" aria-hidden="true"></ion-icon> | ||
</button> | ||
</div> | ||
|
||
<ul class="navbar-list"> | ||
<li class="navbar-item"> | ||
<a href="/index.html" class="navbar-link title-sm" data-nav-link | ||
>Home</a | ||
> | ||
</li> | ||
|
||
<li class="navbar-item"> | ||
<a | ||
href="/pages/courses.html" | ||
class="navbar-link title-sm" | ||
data-nav-link | ||
>Courses</a | ||
> | ||
</li> | ||
|
||
<li class="navbar-item"> | ||
<a | ||
href="/pages/blog.html" | ||
class="navbar-link title-sm" | ||
data-nav-link | ||
>Blog</a | ||
> | ||
</li> | ||
|
||
<li class="navbar-item"> | ||
<a | ||
href="/pages/contact.html" | ||
class="navbar-link title-sm" | ||
data-nav-link | ||
>Contacts</a | ||
> | ||
</li> | ||
</ul> | ||
</nav> | ||
|
||
<a href="./signin.html" class="btn btn-secondary">Start Free Trial</a> | ||
|
||
<button class="nav-open-btn" aria-label="open menu" data-nav-toggler> | ||
<ion-icon name="menu-outline" aria-hidden="true"></ion-icon> | ||
</button> | ||
|
||
<div class="overlay" data-overlay data-nav-toggler></div> | ||
</div> | ||
</header> | ||
|
||
<!-- | ||
- custom js link | ||
--> | ||
<script src="../assets/js/script.js"></script> | ||
<script src="../assets/js/script.js"></script> | ||
|
||
<!-- | ||
- ionicon | ||
--> | ||
<script | ||
type="module" | ||
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js" | ||
></script> | ||
<script | ||
nomodule | ||
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js" | ||
></script> | ||
</body> | ||
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script> | ||
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script> | ||
</body> | ||
</html> |