-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhome.html
More file actions
28 lines (28 loc) · 1.03 KB
/
home.html
File metadata and controls
28 lines (28 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!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">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="/img/logo1.png">
<title>Skip The Books</title>
</head>
<body>
<header class="full-screen-header">
<nav class="nav nav-top">
<img class="logo" src="img/logo1.png" alt="Product Logo">
<ul class="nav-list">
<li><a href="home.html">Home</a></li>
<li><a href="restaurants.html">Restaurants</a></li>
<li><a href="mySchedule.html">My Schedule</a></li>
<li><a href="myProfile.html">My Profile</a></li>
</ul>
</nav>
<h1 class="title">WELCOME TO SKIP THE BOOKS</h1>
<span class="sub-title">Work more efficiently with food</span>
</header>
<script src="timer.js"></script>
</body>
</html>