-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (32 loc) · 1.16 KB
/
index.html
File metadata and controls
41 lines (32 loc) · 1.16 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- When publishing your app in a production environment it's recommend to put here you final css href and delete this one -->
<link id="cssStyles" rel="stylesheet">
<title>DevStack for HTML, CSS and Javascript</title>
</head>
<body>
<!-- JUST TRUST YOURSELF AND BUILD SOMETHING GREAT!... GO FOR IT! -->
<!-- Main header: Your brand, nav menu and social media -->
<header class="header">
<!-- <your code goes here> -->
</header>
<!-- Main content -->
<main id="main" class="main">
<!-- <your code goes here> -->
</main>
<!-- Sidebar is optional, it is used for information not necessarily related to the main content. -->
<aside class="aside">
<!-- <your code goes here> -->
</aside>
<!-- Main footer: For information about the company, social media, copy right, etc. -->
<footer class="footer">
<!-- <your code goes here> -->
</footer>
<!-- Scripts -->
<script src="./assets/scripts/app.js" type="Module"></script>
</body>
</html>