Initial Commit

- adds basic .gitignore
- adds basic index.html file
This commit is contained in:
Ariana Giroux 2022-06-25 14:52:55 -06:00
commit 9ef10153c9
2 changed files with 23 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/bower_components/
/node_modules/

21
index.html Normal file
View File

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title>Example Title</title>
<meta name="author" content="Your Name">
<meta name="description" content="Example description">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="">
<link rel="icon" type="image/x-icon" href=""/>
</head>
<body>
<header></header>
<main></main>
<footer></footer>
<script type="text/javascript" src=""></script>
</body>
</html>