-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (125 loc) · 6.25 KB
/
index.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link
rel="shortcut icon"
href="assets/small icon.png"
type="image/x-icon"
/>
<script src="https://cdn.tailwindcss.com"></script>
<title>Blogee</title>
</head>
<body>
<div class="loader"></div>
<header>
<nav
class="bg-white dark:bg-gray-900 fixed w-full z-20 top-0 start-0 border-b border-gray-200 dark:border-gray-600"
>
<div
class="max-w-screen-xl flex flex-wrap items-center justify-between mx-auto p-4"
>
<a href="#" class="flex items-center space-x-3 rtl:space-x-reverse">
<img src="assets/small icon.png" class="h-8" alt="Blogee Logo" />
<span
class="title self-center text-3xl whitespace-nowrap dark:text-white"
>Blogee</span
>
</a>
<div
id="btnsContanier"
class="flex md:order-2 space-x-3 md:space-x-0 rtl:space-x-reverse"
>
</div>
<div
class="items-center justify-between hidden w-full md:flex md:w-auto md:order-1"
id="navbar-sticky"
>
<ul
class="flex flex-col p-4 md:p-0 mt-4 font-medium border border-gray-100 rounded-lg bg-gray-50 md:space-x-8 rtl:space-x-reverse md:flex-row md:mt-0 md:border-0 md:bg-white dark:bg-gray-800 md:dark:bg-gray-900 dark:border-gray-700"
>
<li id="Home">
<a
href="#"
class="block py-2 px-3 text-white bg-blue-700 rounded md:bg-transparent md:p-0 md:dark:text-blue-500 md:text-blue-700"
aria-current="page"
>Home</a
>
</li>
<li id="Your_Blog">
<a
href="#"
class="block py-2 px-3 text-gray-900 rounded hover:bg-gray-100 md:hover:bg-transparent md:hover:text-blue-700 md:p-0 md:dark:hover:text-blue-500 dark:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent dark:border-gray-700
"
>Your Blogs</a
>
</li>
<li id="Profile">
<a
href="Profile/profile.html"
class="block py-2 px-3 text-gray-900 rounded hover:bg-gray-100 md:hover:bg-transparent md:hover:text-blue-700 md:p-0 md:dark:hover:text-blue-500 dark:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent dark:border-gray-700"
>Profile</a
>
</li>
<!-- <li>
<a href="#" class="block py-2 px-3 text-gray-900 rounded hover:bg-gray-100 md:hover:bg-transparent md:hover:text-blue-700 md:p-0 md:dark:hover:text-blue-500 dark:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent dark:border-gray-700">Contact</a>
</li> -->
</ul>
</div>
</div>
</nav>
</header>
<section id="blogContainer" class="flex gap-[30px] flex-wrap justify-center items-center w-[98.7vw] min-h-[100%] pt-[120px] pb-[70px] bg-slate-300">
<div class="relative flex bg-clip-border rounded-xl bg-white text-gray-700 shadow-md w-full max-w-[45rem] flex-row">
<div
class="relative w-2/5 m-0 overflow-hidden text-gray-700 bg-white rounded-r-none bg-clip-border rounded-xl shrink-0">
<img
src="https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1471&q=80"
alt="card-image" class="object-cover w-full h-full" />
</div>
<div class="p-6">
<h6
class="block mb-4 font-sans text-base antialiased font-semibold leading-relaxed tracking-normal text-gray-700 uppercase">
startups
</h6>
<h4 class="block mb-2 font-sans text-2xl antialiased font-semibold leading-snug tracking-normal text-blue-gray-900">
Lyft launching cross-platform service this week
</h4>
<p class="block mb-8 font-sans text-base antialiased font-normal leading-relaxed text-gray-700">
Like so many organizations these days, Autodesk is a company in
transition. It was until recently a traditional boxed software company
selling licenses. Yet its own business model disruption is only part of
the story
</p>
<a href="#" class="inline-block"><button
class="flex items-center gap-2 px-6 py-3 font-sans text-xs font-bold text-center text-gray-900 uppercase align-middle transition-all rounded-lg select-none disabled:opacity-50 disabled:shadow-none disabled:pointer-events-none hover:bg-gray-900/10 active:bg-gray-900/20"
type="button">
Learn More<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"
stroke-width="2" class="w-4 h-4">
<path stroke-linecap="round" stroke-linejoin="round" d="M17.25 8.25L21 12m0 0l-3.75 3.75M21 12H3"></path>
</svg></button></a>
</div>
</div>
</section>
<footer class="bg-gray-900 text-white p-4 w-[98.7vw]">
<div class="flex justify-between">
<div>
<!-- Footer content for the left side -->
<p>Copyright © 2024 Blogee. All rights reserved.</p>
</div>
<div>
<!-- Footer content for the right side -->
<ul class="flex space-x-4">
<li><a href="#" class="text-white hover:text-blue-500">Terms</a></li>
<li><a href="#" class="text-white hover:text-blue-500">Privacy</a></li>
<li><a href="#" class="text-white hover:text-blue-500">Help</a></li>
</ul>
</div>
</div>
</footer>
<script type="module" src="script.mjs"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</body>
</html>