Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
mini layout
  • Loading branch information
Alex Mueller committed Feb 17, 2020
1 parent 7ef630c commit fec9c16
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
16 changes: 16 additions & 0 deletions week-4-mini-layout/index.html
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Mini Layout</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<img src="smile-regular.svg " alt="">
<h1>Welcome to the app!</h1>
<p>Thanks for signing up. Let's take a look around.</p>
<button>Begin Tour</button>
</body>
</html>
1 change: 1 addition & 0 deletions week-4-mini-layout/smile-regular.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions week-4-mini-layout/style.css
@@ -0,0 +1,21 @@
* {
box-sizing: border-box;
}

body {
height: 100vh;
width: 100vw;
margin: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

h1 {
margin: 0;
}

img {
height: 48px;
}

0 comments on commit fec9c16

Please sign in to comment.