-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslv.html
More file actions
55 lines (53 loc) · 1.64 KB
/
slv.html
File metadata and controls
55 lines (53 loc) · 1.64 KB
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
52
53
54
55
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Slow Low Ventures</title>
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<style>
/* CSS styles can be added here */
body {
font-family: 'Open Sans';
margin: 0;
padding: 0;
background-color: whitesmoke;
}
header{
background-color: #333;
padding: 10px 20px;
text-align: center;
}
.container {
flex: 1;
max-width: 800px;
margin: 20px auto;
padding: 0 20px;
}
footer{
font-family: 'Open Sans';
padding: 10px 20px;
text-align: center;
margin-top: auto;
}
h1 {
color: whitesmoke;
}
p {
color: #666;
}
</style>
</head>
<body>
<header>
<h1>Welcome to Slow Low Ventures!</h1>
</header>
<div class="container">
<h2>About us</h2>
<p>
We are a group of car enthusiasts that love cars. We are comprised out of 3 founders and we have 2 Toyota/Subaru GT86/BRZ and a Mazda Miata ND. On our instagram, we are documenting our journey with our cars and cars from our members. If you would want to become a member of our group, come in contact with us and we will make sure to take good care of you!
</p>
</div>
</body>
</html>