8000 Initial commit · staticwebdev/vanilla-basic@2200f8c · GitHub
[go: up one dir, main page]

Skip to content

Commit 2200f8c

Browse files
author
staticwebdev
committed
Initial commit
0 parents  commit 2200f8c

File tree

3 files changed

+41
-0
lines changed

3 files changed

+41
-0
lines changed

index.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<link rel="stylesheet" href="styles.css">
8+
<title>Vanilla JavaScript App</title>
9+
</head>
10+
11+
<body>
12+
<main>
13+
<h1>Vanilla JavaScript App</h1>
14+
</main>
15+
</body>
16+
17+
</html>

readme.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Vanilla JavaScript App
2+
3+
This repo is used as a starter for a _very basic_ HTML web application using no front-end frameworks.

styles.css

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
* {
2+
font-family: Arial, Helvetica, sans-serif;
3+
}
4+
5+
html, body {
6+
margin: 0;
7+
border: 0;
8+
padding: 0;
9+
background-color: #fff;
10+
}
11+
12+main {
13+
margin: auto;
14+
width: 50%;
15+
padding: 20px;
16+
}
17+
18+
main > h1 {
19+
text-align: center;
20+
font-size: 3.5em;
21+
}

0 commit comments

Comments
 (0)
0