Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add files via upload
  • Loading branch information
orm15102 committed Feb 17, 2020
1 parent 8511d46 commit 337d866
Show file tree
Hide file tree
Showing 5 changed files with 73 additions and 0 deletions.
Binary file not shown.
49 changes: 49 additions & 0 deletions week-four-assignment/css/main.css
@@ -0,0 +1,49 @@
button {
color: white;
background-color: #00b8e6;
padding: 10px 25px;
}

#content {
display: flex;
flex-direction: column;
flex: -webkit-flex;
align-items: center;
justify-content: center;

}

h1 {
font-family: 'Open Sans', sans-serif;
color: #939f99;
font-weight: bold;
margin: 0px;
}

h3 {
font-family: 'Raleway', sans-serif;
color: #939f99;
}

button{
font-size: 15px;
border-radius: 8px;
outline: 1px;
border-style: solid;
border-color: #00a3cc;
font-family: 'Raleway', sans-serif;
}

img {
width: 15%;
padding-bottom: 10px;
opacity: 30%;
}

div {
height: 100vh;
width: 100vh;
display: flex;
align-items: center;
margin: auto;
}
1 change: 1 addition & 0 deletions week-four-assignment/img/inbox-solid.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions week-four-assignment/img/smile-regular.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions week-four-assignment/week-four-layout-two.html
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/main.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400|Raleway&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap" rel="stylesheet">
<title>week four</title>
</head>

<body>

<div id="content">
<img src="img/smile-regular.svg">
<h1>Welcome to the app!</h1>
<h3>Thanks for signing up. Let's take a look around.</h3>
<button type="submit">Begin Tour</button>
</div>

</body>
</html>

0 comments on commit 337d866

Please sign in to comment.