Skip to content

Commit 9273c9b

Browse files
committed
Setup
0 parents  commit 9273c9b

File tree

5 files changed

+34
-0
lines changed

5 files changed

+34
-0
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Async JavaScript
2+
3+
Asynchronous JavaScript

app.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log("async javascript");

favicon.ico

14.7 KB
Binary file not shown.

index.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Async JavaScript</title>
8+
<!-- Favicon -->
9+
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
10+
<!-- Stylesheet -->
11+
<link rel="stylesheet" href="./styles.css" />
12+
</head>
13+
<body>
14+
<h1>Asynchronous JavaScript</h1>
15+
16+
<!-- Link to JavaScript -->
17+
<script type="module" src="./app.js"></script>
18+
</body>
19+
</html>

styles.css

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
body {
2+
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
3+
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
4+
text-transform: capitalize;
5+
text-align: center;
6+
}
7+
8+
h1 {
9+
text-align: center;
10+
letter-spacing: 2px;
11+
}

0 commit comments

Comments
 (0)