[HTML] Add standard index skeleton
This commit is contained in:
parent
68ee7fdd30
commit
55d9ea3e46
1 changed files with 22 additions and 0 deletions
22
index.html
Normal file
22
index.html
Normal file
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Page Title</title>
|
||||
<meta name="description"
|
||||
content="A description of the page." />
|
||||
<meta name="author" content="Your Name" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" type="text/css"
|
||||
href="css/responsive_layout.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="grid">
|
||||
<header>
|
||||
</header>
|
||||
<main>
|
||||
</main>
|
||||
<footer>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue