145 lines
6.8 KiB
PHP
145 lines
6.8 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Daurix Skills</title>
|
|
<meta name="description" content="Built with Flatlogic Generator">
|
|
<meta name="keywords" content="PHP, MySQL, course display system, W3Schools style, GeeksforGeeks style, online learning, code compiler, student progress, DaurixSkills, web development tutorials, Built with Flatlogic Generator">
|
|
|
|
<!-- Social Media Meta Tags -->
|
|
<meta property="og:title" content="Daurix Skills">
|
|
<meta property="og:description" content="Built with Flatlogic Generator">
|
|
<meta property="og:image" content="">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:image" content="">
|
|
|
|
<!-- Frameworks & Fonts -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.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=Poppins:wght@400;600;700&family=Roboto:wght@400;500&family=Fira+Code&display=swap" rel="stylesheet">
|
|
|
|
<!-- Custom CSS -->
|
|
<link rel="stylesheet" href="assets/css/custom.css">
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Top Navbar -->
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-white fixed-top">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand fw-bold text-primary" href="#">DaurixSkills</a>
|
|
<button class="navbar-toggler" type="button" id="sidebarToggler" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#">Home</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#">Courses</a>
|
|
</li>
|
|
<li class="nav-item dropdown">
|
|
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
<i class="bi bi-person-circle"></i> Guest
|
|
</a>
|
|
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="navbarDropdown">
|
|
<li><a class="dropdown-item" href="#">Login</a></li>
|
|
<li><a class="dropdown-item" href="#">Register</a></li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Sidebar -->
|
|
<div class="sidebar" id="sidebar">
|
|
<nav class="nav flex-column pt-4">
|
|
<h6 class="sidebar-heading px-3 mt-4 mb-1">HTML Basics</h6>
|
|
<a class="nav-link" href="#"><i class="bi bi-file-earmark-text"></i> HTML Introduction</a>
|
|
<a class="nav-link active" href="#"><i class="bi bi-file-earmark-text"></i> HTML Elements</a>
|
|
<a class="nav-link" href="#"><i class="bi bi-file-earmark-text"></i> HTML Attributes</a>
|
|
<a class="nav-link" href="#"><i class="bi bi-file-earmark-text"></i> HTML Headings</a>
|
|
<a class="nav-link" href="#"><i class="bi bi-file-earmark-text"></i> HTML Paragraphs</a>
|
|
|
|
<h6 class="sidebar-heading px-3 mt-4 mb-1">CSS Basics</h6>
|
|
<a class="nav-link" href="#"><i class="bi bi-file-earmark-css"></i> CSS Introduction</a>
|
|
<a class="nav-link" href="#"><i class="bi bi-file-earmark-css"></i> CSS Syntax</a>
|
|
<a class="nav-link" href="#"><i class="bi bi-file-earmark-css"></i> CSS Selectors</a>
|
|
|
|
<h6 class="sidebar-heading px-3 mt-4 mb-1">JavaScript Basics</h6>
|
|
<a class="nav-link" href="#"><i class="bi bi-file-earmark-code"></i> JS Introduction</a>
|
|
<a class="nav-link" href="#"><i class="bi bi-file-earmark-code"></i> JS Output</a>
|
|
<a class="nav-link" href="#"><i class="bi bi-file-earmark-code"></i> JS Statements</a>
|
|
</nav>
|
|
</div>
|
|
|
|
<!-- Main Content -->
|
|
<main class="content-wrapper p-4">
|
|
<div class="container-fluid">
|
|
|
|
<!-- Progress Bar -->
|
|
<div class="mb-4">
|
|
<h5 class="fw-bold">Your Progress</h5>
|
|
<div class="progress" style="height: 20px;">
|
|
<div class="progress-bar" role="progressbar" style="width: 25%;" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100">25%</div>
|
|
</div>
|
|
</div>
|
|
|
|
<article>
|
|
<h1 class="fw-bold">HTML Elements</h1>
|
|
<p class="lead">An HTML element is defined by a start tag, some content, and an end tag.</p>
|
|
|
|
<hr class="my-4">
|
|
|
|
<p>The HTML <strong>element</strong> is everything from the start tag to the end tag:</p>
|
|
<p class="text-center fst-italic"><code><tagname>Content goes here...</tagname></code></p>
|
|
<p>Examples of some HTML elements:</p>
|
|
<ul>
|
|
<li><code><h1>My First Heading</h1></code></li>
|
|
<li><code><p>My first paragraph.</p></code></li>
|
|
</ul>
|
|
|
|
<h2 class="mt-5">Code Example</h2>
|
|
<p>The following example shows a simple HTML document structure with a heading and a paragraph.</p>
|
|
|
|
<div class="code-block my-4">
|
|
<pre><code><!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Page Title</title>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>This is a Heading</h1>
|
|
<p>This is a paragraph.</p>
|
|
|
|
</body>
|
|
</html></code></pre>
|
|
</div>
|
|
|
|
<div class="d-flex justify-content-center my-4">
|
|
<a href="#" class="btn btn-lg quiz-btn"><i class="bi bi-question-circle-fill"></i> Take the Quiz!</a>
|
|
</div>
|
|
|
|
</article>
|
|
|
|
<!-- Navigation Buttons -->
|
|
<div class="d-flex justify-content-between mt-5">
|
|
<a href="#" class="btn btn-lg btn-primary"><i class="bi bi-arrow-left-circle"></i> Previous</a>
|
|
<a href="#" class="btn btn-lg btn-secondary">Next <i class="bi bi-arrow-right-circle"></i></a>
|
|
</div>
|
|
|
|
</div>
|
|
</main>
|
|
|
|
<!-- Bootstrap JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
<!-- Custom JS -->
|
|
<script src="assets/js/main.js"></script>
|
|
</body>
|
|
</html> |