summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2023-05-11 14:54:54 +0100
committerMatthew Lemon <y@yulqen.org>2023-05-11 14:54:54 +0100
commit3589a495ea57136200f26e634be9905c17806d17 (patch)
tree0ac91f420f08aa8254a8273070699d70a24c13ec
initial commit
-rw-r--r--index.html103
1 files changed, 103 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..e890c61
--- /dev/null
+++ b/index.html
@@ -0,0 +1,103 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Twenty Four Software</title>
+ <link rel="preconnect" href="https://fonts.googleapis.com">
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
+ <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&family=Quicksand&family=Roboto&display=swap" rel="stylesheet">
+ <style>
+ body {
+ font-family: 'Poppins', sans-serif;
+ margin: 0;
+ padding: 0;
+ background-color: #f8f8f8;
+ }
+
+ .container {
+ width: 60%;
+ margin: 0 auto;
+ padding: 20px;
+ }
+
+ header {
+ background-color: #333;
+ color: #fff;
+ padding: 10px 0;
+ text-align: center;
+ }
+
+ h1, h2, h3 {
+ margin: 0;
+ padding: 10px 0;
+ }
+
+ footer {
+ background-color: #333;
+ color: #fff;
+ text-align: center;
+ padding: 10px 0;
+ width: 100%;
+ }
+ form {
+ display: flex;
+ flex-direction: column;
+ }
+
+ form input[type="text"],
+ form input[type="email"],
+ form textarea {
+ margin-bottom: 10px;
+ padding: 10px;
+ border-radius: 5px;
+ border: 1px solid #ccc;
+ }
+
+ form input[type="submit"] {
+ background-color: #333;
+ color: #fff;
+ border: none;
+ border-radius: 5px;
+ padding: 10px;
+ cursor: pointer;
+ }
+ </style>
+ </head>
+ <body>
+ <header>
+ <div class="container">
+ <h1>Twenty Four Software</h1>
+ </div>
+ </header>
+
+ <div class="container">
+ <h2>About Us</h2>
+ <p>
+ We are a fledgling UK company passionate about simple, effective web design and building great software tools to help our clients get the job done. We believe in the simplicity and efficiency of traditional web technologies to deliver high-quality websites and modern tooling and languages such as Python and Go to deliver effective software applications.
+ </p>
+<p>
+Currently operating as a side project, Twenty Four is driven by a vision to grow into a full-time endeavour. Our journey is just as important as our destination, and we're eager to forge partnerships with small businesses, Government or public sector teams, sole traders and startups who share our enthusiasm for simple, effective design and open-source values. Our ultimate goal is to transition into a full-time operation, dedicated to helping businesses of all sizes enhance their online presence and productivity.
+</p>
+ <p>
+ We specialise in static websites, dynamic web applications, databases and command line tools. Whether you need a simple yet effective web presence, a sophisticated web application or a proper database to replace your spreadsheets - we have the dedication to deliver.
+ </p>
+ <p>
+ At Twenty Four, we pride ourselves on our no-fuss approach to software and web development. We focus on getting the job done right, delivering quality, and exceeding client expectations. Our commitment is to your success. Get in contact and let us know how we can help.
+ </p>
+
+ <h2>Contact Us</h2>
+ <form action="mailto:hello@twentyfoursoftware.com" method="post" enctype="text/plain">
+ <input type="text" name="name" placeholder="Your Name" required>
+ <input type="email" name="email" placeholder="Your Email" required>
+ <textarea name="message" placeholder="Your Message" required></textarea>
+ <input type="submit" value="Submit">
+ </form>
+ </div>
+
+ <footer>
+ <div class="container">
+ <p>&copy; 2023 Twenty Four Software. All rights reserved.</p>
+ </div>
+ </footer>
+ </body>
+</html>
+