-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsection-headers.html
More file actions
36 lines (36 loc) · 918 Bytes
/
section-headers.html
File metadata and controls
36 lines (36 loc) · 918 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
<!DOCTYPE html>
<html>
<head>
<style>
* { margin: 0; padding: 0; }
body { background: #0a0a0a; }
.header {
width: 900px;
height: 72px;
background: #0a0a0a;
display: flex;
align-items: center;
padding: 0 24px;
box-sizing: border-box;
font-family: "SF Mono", Menlo, Consolas, monospace;
font-size: 18px;
font-weight: 600;
color: #D97706;
letter-spacing: 0.12em;
border-bottom: 2px solid #D97706;
}
</style>
</head>
<body>
<div class="header">WHY</div>
<div class="header">THE WALNUT</div>
<div class="header">THE ALIVE FRAMEWORK</div>
<div class="header">WHAT HAPPENS</div>
<div class="header">WORKS WITH</div>
<div class="header">WHAT'S INSIDE</div>
<div class="header">THE SQUIRREL</div>
<div class="header">WHAT PEOPLE ARE SAYING</div>
<div class="header">CONTEXT AS PROPERTY</div>
<div class="header">CONTRIBUTING</div>
</body>
</html>