-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlearn.html
More file actions
23 lines (20 loc) · 703 Bytes
/
learn.html
File metadata and controls
23 lines (20 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tailwind</title>
<link rel="stylesheet" href="./main.css">
</head>
<body>
<nav >
<ul class="bg-gradient-to-r from-indigo-500 py-8 bg-purple-400 flex">
<li class="mx-4 text-white text-3xl">Home</li>
<li class="mx-4 text-white text-3xl">Projects</li>
<li class="mx-4 text-white text-3xl">Contact US</li>
</ul>
</nav>
<script src="https://cdn.tailwindcss.com"></script>
</body>
</html>