-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmenu.html
More file actions
30 lines (26 loc) · 778 Bytes
/
menu.html
File metadata and controls
30 lines (26 loc) · 778 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Colorado OS</title>
<meta name="description" content="Colorado OS">
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<div class="main">
<img class="nav-img" src="img/logo_big.png" width="60" height="58" alt="Colorado OS logo">
<div class="row">
<div class="column" style="background-color:#aaa;">
<h2>Colum 1</h2>
<p>Some text..</p>
</div>
<div class="column" style="background-color:#bbb;">
<h2>Column 2</h2>
<p>Some text..</p>
</div>
</div>
</div>
</body>
</html>