-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaindex.html
More file actions
39 lines (35 loc) · 699 Bytes
/
aindex.html
File metadata and controls
39 lines (35 loc) · 699 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href="page-layout/semantic.min.css" rel="stylesheet" type="text/css">
<link href="page-layout/layout.css" rel="stylesheet" type="text/css">
</head>
<body>
<style>
div {
border: none; /*clear layout.css border*/
}
.ui.segment {
margin: 0px;
}
</style>
<div class="ui segment header">
<p>Header</p>
</div>
<div class="main-container">
<div class="ui segment side-nav">
<p>Left side</p>
</div>
<div class="ui segment main">
<p>main content</p>
</div>
<div class="ui segment side-nav">
<p>right-side</p>
</div>
</div>
<div class="ui segment">
<p>Footer</p>
</div>
</body>
</html>