-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex1.html
More file actions
102 lines (81 loc) · 2.05 KB
/
index1.html
File metadata and controls
102 lines (81 loc) · 2.05 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<html>
<head>
<link rel="icon" type="image/png" href="favicon.png"/>
<link href='http://fonts.googleapis.com/css?family=Orienta' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Arbutus+Slab' rel='stylesheet' type='text/css'>
<style>
body {
background-image: url(bg_comps.jpg);
background-repeat: no-repeat;
background-size: 100%;
background-color: black;
color: white;
}
h1 {
text-align: center;
font-family: 'Orienta', sans-serif;
font-size: 70pt;
margin-bottom: 25px;
padding: 0;
}
.logo {
top: 50%;
position: absolute;
margin-top: -250px;
left: 50%;
margin-left: -500px;
width: 1000px;
}
.slogan {
margin-top: 40px;
text-align: center;
letter-spacing: 0.1em;
font-family: 'Arbutus Slab', serif;
font-size: 35pt;
}
.menu {
color: white;
text-align: center;
font-family: sans-serif;
font-size: 14pt;
padding-top: 5px;
padding-bottom: 5px;
bottom: 50px;
left: 50%;
margin-left: -310px;
width: 620px;
position: absolute;
text-align: center;
border-radius: 20px;
}
.menu a {
vertical-align: bottom;
color: white;
text-decoration: none;
padding-top: 20px;
letter-spacing: 0.25em;
margin: 0px 5px 0px 5px;
text-align: center;
}
.menu a.active {
border-bottom: 4px solid black;
}
.menu a:hover {
color: gray;
}
</style>
</head>
<body>
<div class="logo">
<h1>{ app_dev: studio }</h1>
<p class="slogan">Where ideas become perfect apps</p>
</div>
<div class="menu">
<a href="#">STUDIO</a>•
<a href="#">PEOPLE</a>•
<a href="#">WORK</a>•
<a href="#">BLOG</a>•
<a href="#">CONTACT</a>
</div>
</body>
</html>