This repository has been archived by the owner on Oct 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathproject.html
78 lines (72 loc) · 1.57 KB
/
project.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Udacity Site Header</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300' rel='stylesheet' type='text/css'>
<style>
body {
font-family: 'Open Sans', sans-serif;
margin: 0;
padding: 0;
background: #ddd;
}
header {
font-weight: 400;
-webkit-font-smoothing: antialiased;
color: #697681;
background: white;
height: 85px;
padding: 15px;
}
.flex-container {
display: flex;
}
.space-between {
justify-content: space-between;
}
.vertical-centerer {
height: 100%;
flex-direction: column;
justify-content: center;
}
.header-content {
width: 960px;
margin-left: auto;
margin-right: auto;
}
.logo {
width: 200px;
display: inline-block;
margin: 10px 0px;
}
.menu {
list-style: none;
list-style-type: none;
}
.menu > li {
display: inline;
margin-left: 37.5px;
}
</style>
</head>
<body>
<header>
<div class="vertical-centerer flex-container">
<div class="flex-container space-between header-content">
<div>
<span>
</span>
</div>
<div>
<ul class="menu">
<li>Home</li>
<li>About</li>
<li>Contact us</li>
</ul>
</div>
</div>
</div>
</header>
</body>
</html>