Skip to content

Commit

Permalink
index.html and style.css structuring, and job divisions
Browse files Browse the repository at this point in the history
  • Loading branch information
gjlander committed Aug 25, 2023
1 parent c4c3aa8 commit 75e4c1f
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
25 changes: 25 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<!-- Navbar and header-Mochi -->
<nav></nav>
<header></header>
<main>
<!--Our Story and Watch our Story-Kimberly -->
<section></section>
<section></section>
<!--Expertise and Meet Our Amazing Team-Garrett -->
<section></section>
<section></section>
<!-- Give us a good news and footer-Cat -->
<section></section>
<footer></footer>
</main>
</body>
</html>
15 changes: 15 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
* {
box-sizing: border-box;
padding: 0;
margin: 0 auto;
}

body {
min-height: 100vh;
}

@media (max-width: 480px) {
}

@media (max-width: 768px) {
}

0 comments on commit 75e4c1f

Please sign in to comment.