-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmycats.html
More file actions
26 lines (20 loc) · 887 Bytes
/
Copy pathmycats.html
File metadata and controls
26 lines (20 loc) · 887 Bytes
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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html" ; charset=UTF-8" />
<title>My First Website</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss/dist/tailwind.min.css" rel="stylesheet">
<!-- <link rel="stylesheet" href="style.css"> -->
</head>
<body>
<div class="container mx-auto">
<nav class="flex bg-grey-lighter">
<a class="flex-1 text-grey-darker text-center bg-grey-light px-4 py-2 m-2" href="./index.html">Home</a>
<a class="flex-1 text-grey-darker text-center bg-grey-light px-4 py-2 m-2" href="./mycats.html">Meet my
cats!</a>
</nav>
<h1 class="text-center mt-20">My cats</h1>
<p class="text-center mt-10">Here are my two cats: Ninja and Bleach!</p>
<img class="mt-10" src="./Ninja&Bleach" alt="Ninja & Bleach">
</div>
</html>