-
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.
Added WIP page, NavBar changes and fonts
Responsive toggle navbar added Added a "WIP" Work in progress page for all pages that have yet to be completed. Added google fonts
- Loading branch information
Showing
5 changed files
with
304 additions
and
126 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,81 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>South Arts Hub</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous"> | ||
</head> | ||
|
||
<body> | ||
|
||
<nav class="navbar navbar-expand-md bg-body-tertiary"> | ||
<div class="container"> | ||
<!--brand--> | ||
<a class="navbar-brand" href="index.html"> | ||
<img src="img/staticlogo.png" alt="Logo" width="45px" class="logopng"> | ||
South Arts Hub | ||
</a> | ||
<!--Hamburger button/toggler--> | ||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<!--set of links--> | ||
<div class="collapse navbar-collapse" id="navbarNav"> | ||
<ul class="navbar-nav ms-auto"> | ||
<li class="nav-item"> | ||
<a class="nav-link active" aria-current="page" href="index.html">Home</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="WIP.html">Learn</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="WIP.html">Blogs</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="WIP.html">News</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="events.html">Events</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
|
||
<div class="container1"> | ||
<div class="d-flex justify-content-center"> | ||
<img src="img\wip.gif.GIF" alt="Work in Progress"> | ||
</div> | ||
<div class="d-flex justify-content-center"> | ||
<h3>This page is a Work in Progress<br><em>Please check back at a later time</em></h3> | ||
</div> | ||
</div> | ||
|
||
<footer> | ||
<div class="container mt-5"> | ||
<div class="row row-cols-4"> | ||
|
||
<div class="col"><b>Learn</b></div> | ||
<div class="col"><b>News</b></div> | ||
<div class="col"><b>Blogs</b></div> | ||
<div class="col"><b>Events</b></div> | ||
|
||
<div class="col">Drawing</div> | ||
<div class="col">Surrey</div> | ||
<div class="col">Social Media for Artists</div> | ||
<div class="col">Craft Fairs</div> | ||
|
||
<div class="col">Painting</div> | ||
<div class="col">Hampshire</div> | ||
<div class="col">How to Find Your Style</div> | ||
<div class="col">Exhibitions</div> | ||
|
||
</div> | ||
</div> | ||
</footer> | ||
|
||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.