From 8855a33da361abb12f2d8098fa91deb32e418655 Mon Sep 17 00:00:00 2001 From: Robin King <robin2.king@live.uwe.ac.uk> Date: Sun, 19 Mar 2023 21:39:47 +0000 Subject: [PATCH] feat(*.html): added framework for each web page and showed reusable classes in comments --- about.html | 31 +++++++++++++++++++++++++++++++ index.html | 32 ++++++++++++++++++++++++++++++++ location.html | 32 ++++++++++++++++++++++++++++++++ rules.html | 32 ++++++++++++++++++++++++++++++++ 4 files changed, 127 insertions(+) diff --git a/about.html b/about.html index e69de29..1146011 100644 --- a/about.html +++ b/about.html @@ -0,0 +1,31 @@ +<!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>Document</title> + <link rel="stylesheet" href="styles.css"> + <script src="scripts.js" async></script> + <title>Create Against Hate</title> +</head> + +<body> + <header> + <!-- Navigation Bar -- uses id="main-navigation" class="navbar" :: index.html :: about.html :: rules.html :: location.html --> + <!-- Burger Menu --> + </header> + <main> + <!-- Hero -- uses class="hero" :: index.html :: about.html --> + <!-- About -- uses class="text-section" :: about.html :: rules.html :: location.html --> + </main> + <footer> + <!-- Footer :: index.html :: about.html :: rules.html :: location.html --> + <!-- Copyright --> + <!-- Sitemap --> + <!-- Socials --> + </footer> +</body> + +</html> \ No newline at end of file diff --git a/index.html b/index.html index e69de29..10ab19a 100644 --- a/index.html +++ b/index.html @@ -0,0 +1,32 @@ +<!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>Document</title> + <link rel="stylesheet" href="styles.css"> + <script src="scripts.js" async></script> + <title>Create Against Hate</title> +</head> + +<body> + <header> + <!-- Navigation Bar -- uses id="main-navigation" class="navbar" :: index.html :: about.html :: rules.html :: location.html --> + <!-- Burger Menu --> + </header> + <main> + <!-- Hero -- uses class="hero" :: index.html :: about.html --> + <!-- About -- uses class="grid-2x2" --> + <!-- Sign Up Form -- uses class="sign-up-form" --> + </main> + <footer> + <!-- Footer :: index.html :: about.html :: rules.html :: location.html --> + <!-- Copyright --> + <!-- Sitemap --> + <!-- Socials --> + </footer> +</body> + +</html> \ No newline at end of file diff --git a/location.html b/location.html index e69de29..3dd4e81 100644 --- a/location.html +++ b/location.html @@ -0,0 +1,32 @@ +<!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>Document</title> + <link rel="stylesheet" href="styles.css"> + <script src="scripts.js" async></script> + <title>Create Against Hate</title> +</head> + +<body> + <header> + <!-- Navigation Bar -- uses id="main-navigation" class="navbar" :: index.html :: about.html :: rules.html :: location.html --> + <!-- Burger Menu --> + </header> + <main> + <!-- Map --> + <!-- Directions -- uses class="text-section" :: about.html :: rules.html :: location.html --> + <!-- Tabs --> + </main> + <footer> + <!-- Footer :: index.html :: about.html :: rules.html :: location.html --> + <!-- Copyright --> + <!-- Sitemap --> + <!-- Socials --> + </footer> +</body> + +</html> \ No newline at end of file diff --git a/rules.html b/rules.html index e69de29..c786fba 100644 --- a/rules.html +++ b/rules.html @@ -0,0 +1,32 @@ +<!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>Document</title> + <link rel="stylesheet" href="styles.css"> + <script src="scripts.js" async></script> + <title>Create Against Hate</title> +</head> + +<body> + <header> + <!-- Navigation Bar -- uses id="main-navigation" class="navbar" :: index.html :: about.html :: rules.html :: location.html --> + <!-- Burger Menu --> + </header> + <main> + <!-- Rules -- uses class="text-section" :: about.html :: rules.html :: location.html --> + <!-- Ideas -- uses class="text-section" :: about.html :: rules.html :: location.html --> + <!-- Slideshow --> + </main> + <footer> + <!-- Footer :: index.html :: about.html :: rules.html :: location.html --> + <!-- Copyright --> + <!-- Sitemap --> + <!-- Socials --> + </footer> +</body> + +</html> \ No newline at end of file -- GitLab