-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (49 loc) · 1.09 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Gotham Silicon - Home</title>
<style>
body {
background-color: #000;
color: #fff;
margin: 0;
padding: 0;
font-family: "Times New Roman", serif;
text-align: center; /* Center text by default */
}
header {
padding: 40px 0 10px 0;
}
nav {
margin-bottom: 40px;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 20px; /* Spacing between links */
font-weight: bold;
}
main {
padding: 0 20px;
margin-top: 40px; /* Space below nav */
}
</style>
</head>
<body>
<header>
<h1>Gotham Silicon</h1>
</header>
<nav>
<a href="index.html">Home</a>
<a href="fabrication.html">Fabrication Services</a>
<a href="contact.html">Contact</a>
</nav>
<main>
<h2>About Us</h2>
<p>Gotham Silicon is about making nanofabrication easy, fast, and cheap.</p>
<p>All 1.5 people who are working on this are based in New York City.</p>
<p>(Don't worry we got this)</p>
</main>
</body>
</html>