Skip to content
Snippets Groups Projects
Commit 133b3d67 authored by Rhys Nute's avatar Rhys Nute
Browse files

added css

parent 0ca292ec
No related branches found
No related tags found
2 merge requests!38Draft: Businesses,!31Resolve "As a user, I want to see a page of local authorities so that I can easily source contact details for a variety of different local authorities."
body{
background-color: rgb(41, 41, 41)
}
h3{
color: wheat;
}
ul{
list-style: none;
}
ul li{
color: wheat;
list-style: none;
}
\ No newline at end of file
......@@ -3,7 +3,9 @@
<head>
<meta charset="UTF-8">
<title>Businesses</title>
<link rel="stylesheet" th:href="@{css\templatingstyle.css}">
</head>
<header th:insert="~{/towns/Templating.html::header}"></header>
<body>
<div id="container1">
<h2>Enter your Business information</h2>
......@@ -40,5 +42,5 @@
</form>
</div>
</body>
<footer th:insert="~{/towns/Templating.html::footer}"></footer>
</html>
\ No newline at end of file
......@@ -3,17 +3,19 @@
<head>
<meta charset="UTF-8">
<title>Businesses</title>
<link rel="stylesheet" href="../static/css/templatingstyle.css">
<link rel="stylesheet" th:href="@{css\businessesStyle.css}">
<link rel="stylesheet" th:href="@{css\templatingstyle.css}">
</head>
<header th:insert="~{/towns/Templating.html::header}"></header>
<body>
<h1>Future Proof Businesses</h1>
<h1>Compete with Online Retailers</h1>
<h1>Drive Footfall to the high street</h1>
<h1>Increase Sales</h1>
<ul th:each="businesses:${business}">
<li th:text="${businesses}"></li>
<h3>Future Proof Businesses</h3>
<h3>Compete with Online Retailers</h3>
<h3>Drive Footfall to the high street</h3>
<h3>Increase Sales</h3>
<ul th:each="business:${business}">
<li th:text="${business}"></li>
</ul>
<p>Businesses please enter here</p><button><a href="business-data.html" id="business">Login</a></button>
<button><a href="business-data.html" id="business">Businesses please enter here</a></button>
</body>
<footer th:insert="~{/towns/Templating.html::footer}"></footer>
</html>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment