-
Notifications
You must be signed in to change notification settings - Fork 0
/
mylist.html
79 lines (64 loc) · 3.25 KB
/
mylist.html
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Salesforce+</title>
<link rel="icon" type="img/x-icon" href="img/salesforce-with-type-logo.svg">
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100">
<header class="bg-white text-gray-900 p-4 border-b border-gray-200">
<div class="container mx-auto flex items-center justify-between">
<nav class="flex items-center space-x-6">
<a href="#">
<img src="img/salesforce-with-type-logo.svg" alt="Salesforce Logo" class="w-24 h-auto">
</a>
<a href="#" class="hover:text-blue-600 font-bold">Products</a>
<a href="#" class="hover:text-blue-600 font-bold">Industries</a>
<a href="#" class="hover:text-blue-600 font-bold">Customers</a>
<a href="#" class="hover:text-blue-600 font-bold">Learning</a>
<a href="#" class="hover:text-blue-600 font-bold">Support</a>
<a href="#" class="hover:text-blue-600 font-bold">Company</a>
<a href="mylist.html" class="hover:text-blue-600 font-bold">Salesforce+</a>
</nav>
<div class="flex items-center space-x-4">
<div class="relative">
<input type="text" placeholder="Search Salesforce+"
class="border border-gray-300 rounded-lg px-3 py-2 focus:outline-none focus:ring focus:border-blue-500">
<button class="absolute right-2 top-1/2 transform -translate-y-1/2 text-gray-500">
🔍
</button>
</div>
<a href="tel:1-800-664-9073" class="hover:text-blue-600 font-bold">1-800-664-9073</a>
<a href="#" class="hover:text-blue-600 font-bold">Contact Us</a>
<a href="#" class="hover:text-blue-600 font-bold">Login</a>
</div>
</div>
</header>
<div class="bg-blue-900 text-white p-3">
<div class="container mx-auto flex justify-between items-center">
<nav class="flex space-x-6">
<a href="#" class="hover:text-gray-300 font-bold">Home</a>
<a href="#" class="hover:text-gray-300 font-bold">Events</a>
<a href="#" class="hover:text-gray-300 font-bold">Original Series</a>
<a href="#" class="hover:text-gray-300 font-bold">Categories</a>
<a href="#" class="hover:text-gray-300 font-bold">My List</a>
</nav>
<a href="getstarted.html" class="bg-blue-500 hover:bg-blue-600 text-white font-semibold py-2 px-4 rounded-lg">
Get Started
</a>
</div>
</div>
<section class="relative h-screen flex items-center justify-center text-center text-white"
style="background-image: url('/img/mylist/MyList_Background_Image.webp'); background-size: cover; background-position: center;">
<div class=" bg-opacity-50 p-10 rounded-lg">
<h1 class="text-4xl md:text-5xl font-semibold mb-4">Sign up to add to your list</h1>
<p class="text-lg md:text-xl mb-6">Keep track of your series, episodes, specials, and more</p>
<a href="signup.html" class="bg-blue-500 hover:bg-blue-600 text-white font-semibold py-3 px-6 rounded-lg">
Sign up for free
</a>
</div>
</section>
</body>
</html>