-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.html
63 lines (63 loc) · 1.7 KB
/
homepage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>首页 -- Semantic UI</title>
<link rel="stylesheet" href="https://cdn.bootcss.com/semantic-ui/2.2.7/semantic.min.css">
<style>
.hidden.menu {
display: none;
}
.masthead.segment {
min-height: 700px;
padding: 1em -0em;
}
.masthead .logo.item img {
margin-right: 1em;
}
.masthead .ui.menu .ui.button {
margin-left: 0.5em;
}
.masthead h1.ui.header {
margin-top: 3em;
margin-bottom: 0em;
font-size: 4em;
font-weight: normal;
}
.masthead h2 {
font-size: 1.7em;
}
.ui.vertical.stripe {
padding: 8em 0em;
}
</style>
</head>
<body>
<div class="ui large top fixed hidden menu">
<div class="ui container">
<a href="#" class="item">Home</a>
<a href="#" class="item">Work</a>
<a href="#" class="item">Company</a>
<a href="#" class="item">职位</a>
<div class="right menu">
<div class="item">
<a href="#" class="ui button">Login in</a>
</div>
<div class="item">
<a href="#" class="ui primary button">Sign up</a>
</div>
</div>
</div>
</div>
<div class="ui vertical inverted sidebar menu">
<a href="#" class="active item">Home</a>
<a href="#" class="item">Work</a>
<a href="#" class="item">Company</a>
<a href="#" class="item">Careers</a>
<a href="#" class="item">Login</a>
<a href="#" class="item">Signup</a>
</div>
</body>
</html>