Skip to content

Commit

Permalink
finished lab1
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan95567 committed Sep 13, 2023
1 parent b10fbda commit 41695cb
Show file tree
Hide file tree
Showing 9 changed files with 63 additions and 5 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file added homeworks/hw1/.DS_Store
Binary file not shown.
Binary file added labs/.DS_Store
Binary file not shown.
Binary file added labs/lab1/.DS_Store
Binary file not shown.
Binary file added labs/lab1/img/city.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added labs/lab1/img/house.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added labs/lab1/img/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added labs/lab1/img/sushimaking.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
68 changes: 63 additions & 5 deletions labs/lab1/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,64 @@
<!DOCTYPE html>
<html>
<body>
Lab 1
</body>
<!doctype html>
<html>

<head>
<title>
<!-- The title that shows on the tab in the browser! -->
</title>
</head>

<body>
<!-- Put the top of the page -->
<header>

<!-- We can put an image in a link -->
<a href="home">
<img src="img/logo.png" alt="">
</a>

<!-- Navigation block (links to other pages), also semantic! -->
<nav>
<ul>
<li><a href="become-host">Become a Host</a></li>
<li><a href="sign-up">Sign up</a></li>
<li><a href="log-in">Log in</a></li>
</ul>
</nav>

<!-- don't forget to close the header tag! -->
</header>
<!-- Your content here! -->
<h1>Book unique places to stay and things to do.</h1>
<section>
<img src="img/house.png" />

<!-- Size-two heading -->
<h2>Extraordinary homes</h2>

<p>
A selection of places to stay verified for quality and design.
</p>
</section>
<section>
<img src="img/city.png" />

<!-- Size-two heading -->
<h2>Places to stay around the world</h2>

<p>
Explore a new city on your next trip!
</p>
</section>
<section>
<img src="img/sushimaking.png" />

<!-- Size-two heading -->
<h2>Top-rated experiences</h2>

<p>
Book one-of-a-kind activities hosted by locals, created for the curious.
</p>
</section>
</body>

</html>

0 comments on commit 41695cb

Please sign in to comment.