You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
1.6 KiB
HTML
87 lines
1.6 KiB
HTML
12 months ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<title>CSS Introduction</title>
|
||
|
|
||
|
<link rel="stylesheet" href="./index.css" />
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<nav id="top">
|
||
|
<!--# means that if we click the zuitt it will bring us to the section which name is landing also in landing and corses-->
|
||
|
<a href="#landing">Zuitt</a>
|
||
|
<div>
|
||
|
<a href="#landing">Landing</a>
|
||
|
<a href="#offerings">Courses</a>
|
||
|
</div>
|
||
|
</nav>
|
||
|
|
||
|
|
||
|
<section id="landing">
|
||
|
|
||
|
<h1 style="color:red;"> Hello World</h1>
|
||
|
<h2>Welcome to Zuitt </h2>
|
||
|
<h3 id="zuitt-motto">Opportunities to everyone, everywhere</h3>
|
||
|
<img src="https://place-puppy.com/450x450" />
|
||
|
|
||
|
<!-- parent element -->
|
||
|
<ol class="bootcamp-offering-list">
|
||
|
|
||
|
<!--this is the child of the ol -->
|
||
|
<li class="offering-item">Day classes</li>
|
||
|
<li class="offering-item">Night classes</li>
|
||
|
<li class="offering-item">Shortclasses</li>
|
||
|
</ol>
|
||
|
|
||
|
<a href="#top">Back to top</a>
|
||
|
|
||
|
<h2> Register</h2>
|
||
|
|
||
|
<form>
|
||
|
|
||
|
</form>
|
||
|
</section>
|
||
|
|
||
|
|
||
|
<section id="offerings">
|
||
|
|
||
|
<a href="#top">back to top</a>
|
||
|
|
||
|
<h2>Courses</h2>
|
||
|
<h3>Front end development</h3>
|
||
|
<ol>
|
||
|
<li>git</li>
|
||
|
<li>HTML</li>
|
||
|
<li>CSS</li>
|
||
|
<ol>
|
||
|
<h3 class="modules">Front end development</h3>
|
||
|
<ol>
|
||
|
<li>git</li>
|
||
|
<li>HTML</li>
|
||
|
<li>CSS</li>
|
||
|
<ol>
|
||
|
<h3 class="modules">Back end development</h3>
|
||
|
<ol>
|
||
|
<li>JAVASCRIPT</li>
|
||
|
<li>MONGODB</li>
|
||
|
<li>NODE.JS</li>
|
||
|
<li>EXPRESS.JS</li>
|
||
|
<ol>
|
||
|
<h3 class="modules">Full-stack development</h3>
|
||
|
<ol>
|
||
|
<li>MONGODB</li>
|
||
|
<li>EXPRESS.JS</li>
|
||
|
<li>REACT.JS</li>
|
||
|
<li>NODE.JS</li>
|
||
|
<ol>
|
||
|
|
||
|
</section>
|
||
|
|
||
|
|
||
|
|
||
|
</body>
|
||
|
</html>
|