forked from GoneRogueProductions/chordcss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorial.html
More file actions
43 lines (43 loc) · 821 Bytes
/
tutorial.html
File metadata and controls
43 lines (43 loc) · 821 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
40
41
42
43
<html lang="en">
<head>
<style>
#link {
color: var(--c-b);
}
#h1
{
color: var(--c-dor)
}
#hi
{
color: var(--c-lpu)
}
.c-nav {
background:blue
}
.c-nav a {
color:lightgrey
}
.c-nav a:hover {
color:white
}
</style>
<link rel="stylesheet" href="https://getchord.ml/main.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>chordcss Example 1</title>
</head>
<body class="c-bg-b">
<header>
<div class="c-nav">
<a href="#">Hello</a>
<a href="#">World</a>
</div>
</header>
<h1 id="h1">Hello World!</h1>
<a href="#" id="link">chordcss is awesome!</a>
<h3 id="hi">Hi!</h3>
<div class="c-h3h">Hello World</div>
<div class="c-h5w">Hi Mum!</div>
</body>
</html>