diff options
| author | Adam Spragg <adam@spra.gg> | 2018-05-31 23:25:50 +0100 | 
|---|---|---|
| committer | Adam Spragg <adam@spra.gg> | 2018-05-31 23:25:50 +0100 | 
| commit | 93858a4c34dd4007c72e915ed175bcdc24bbdadd (patch) | |
| tree | 40279e7f6f521f0abc97a9f317ed500acb0d141e /html/contact | |
First fully working config and content for the site
Diffstat (limited to 'html/contact')
| -rw-r--r-- | html/contact | 35 | 
1 files changed, 35 insertions, 0 deletions
| diff --git a/html/contact b/html/contact new file mode 100644 index 0000000..61ccceb --- /dev/null +++ b/html/contact @@ -0,0 +1,35 @@ +<!DOCTYPE html> +<html> +	<head> +		<title>Contact - Spragg Software Services Ltd.</title> +		<link rel="stylesheet" href="/style/main.css"></link> +	</head> +	<body> +		<header> +			<h1>Contact</h1> +			<nav> +				<ul> +					<li><a href="/">Home</a></li> +					<li><a href="/projects">Projects</a></li> +					<li><a href="/blog">Blog</a></li> +					<li><a href="/privacy">Privacy</a></li> +					<li class="selected"><a href="/contact">Contact</a></li> +				</ul> +			</nav> +		</header> +		<main> +			<h2>Contact</h2> +			<p>The best way to get in contact with me is by email, at +				<a href="mailto:adam@spragg-ssl.co.uk">adam@spragg-ssl.co.uk</a>.</p> +			<p>I'm based in +				<a href="https://www.openstreetmap.org/#map=11/53.3811/-1.4722">Sheffield, UK</a> if +				that's an issue, but most of what I do can be done remotely.</p> +		</main> +		<footer> +			<hr /> +			<p>Spragg Software Services Ltd is registered in England, No. 11248242. +				Registered office: 82 Upper Hanover Street, Sheffield, S3 7RQ. +				VAT reg No. 295343283.</p> +		</footer> +	</body> +</html> | 
