html
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
<!DOCTYPE html>
<html>
<head>
<title>My Landing Page</title>
</head>
<body>
<header>
<div class="container">
<h1>Awesome App</h1>
<h2>This app will change your life!</h2>
<a class="btn">Download Now</a>
</div>
</header>
<section class="features">
features
</section>
<section class="quote">
quote
</section>
<footer>
footer
</footer>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
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
@import url(//fonts.googleapis.com/css?family=Open+Sans:400,700,800,300);
body {
margin: 0;
padding: 0;
font-family: 'Open Sans','Helvetica Neue',Helvetica, sans-serif;
line-height: 1.45;
}
header {
color: #FFFFFF;
background-color: #284b63;
padding: 80px 0;
text-align: center;
}
h1 {
font-size: 48px;
margin: 0 0 16px 0;
}
h2 {
font-weight: 300;
font-size: 24px;
margin: 0 0 16px 0;
}
.container {
margin: 0 auto;
padding: 0 10px 0 10px;
max-width: 900px;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run