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
18 changes: 17 additions & 1 deletion css/style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
* {
margin: o;
box-sixing: border-box;
font-family: "Raleway", "sans-serif";
color: rgb(88 91 94);
}
body {
background-color: rgb(237 239 236);
}
h1 {
color: salmon;
color: rgb(88 91 94);
font-family: Fjalla One;
text-align: center;
}

p {
color: rgb(88 91 94);
text-align: center;
}
32 changes: 30 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,37 @@
<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>
<link href="https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap" rel="stylesheet">
<title>Meet Guidebooks</title>
</head>
<body>
<h1>Hello Front-End</h1>
<!-- First card -->
<div class="card">
<!-- first row -->
<section>
<h1>Meet Guidebooks</h1>
<p>Discover hundreds of local spots recommended by Airbnb hosts</p>

</section>
<!-- second row -->

<div class="images"></div>
<!-- first image -->
<section>
<img src="https://github.com/gryantgilgan/css-airbnb/blob/fcff62575de4da50673d560aa0f587c8db467702/src/images/san-francisco.jpg?raw=true" alt="San Francisco"/>
<p>San Francisco</p>
</section>
<!-- second image -->
<section>
<img src="https://github.com/gryantgilgan/css-airbnb/blob/fcff62575de4da50673d560aa0f587c8db467702/src/images/new-york.jpg?raw=true" alt="New York"/>
</section>
<!-- third image -->
<section>
<img src="https://github.com/gryantgilgan/css-airbnb/blob/fcff62575de4da50673d560aa0f587c8db467702/src/images/london.jpg?raw=true" alt="London"/>
</section>

</div>
<!-- third row -->
<button>See All Guidebooks</button>
</body>
</html>