Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 36 additions & 1 deletion css/style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@




h1 {
color: salmon;
text-align: center;
color: gray;


}

h2 {
text-align: center;
color: gray;
}



p {
text-align: center;
}

.container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
align-content: flex-end;
align-items: flex-end;
}

.button {
background-color: white;
width: 300px;
margin: 10 auto;
}


57 changes: 55 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,62 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Hello Front-End</title>
<title>AirBNB Deliverable</title>


</head>

<body>
<h1>Hello Front-End</h1>

<h1>Meet Guidebooks</h1>
<h2> Discover hundreds of local spots recommended by Airbnb hosts</h2>

<div class= "container">

<div class= "SanFran">
<p>San Francisco</p>
<img src= "img/san-francisco-2.jpg">
</div>

<div class= "New York">
<p>New York</p>
<img src= "img/new-york.jpg">
</div>

<div class= "London">
<p>London</p>
<img src= "img/london.jpg">
</div>

<h1>Just for the weekend</h1>

<h2> Discover new, inspiring places close to home</h2>



<div class= "Napa">
<p>Napa</p>
<img src= "img/napa.jpg">
</div>

<div class= "Sonoma">
<p>Sonoma</p>
<img src= "img/sonoma.jpg">
</div>

<div class= "San Francisco">
<p>San Francisco</p>
<img src= "img/san-francisco.jpg">
</div>

</div>

<div class= "button">
See all destionations
</div>



</body>

</html>