-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from RishavOsaurus/sfd-2024
Hero Section Added Closes #5
- Loading branch information
Showing
8 changed files
with
169 additions
and
13 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,68 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head class="m-0 p-0 box-border"> | ||
<head class="m-0 box-border p-0"> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="./../css/output.css" /> | ||
<title>Document</title> | ||
</head> | ||
<body class="bg-grid font-bahnschrift grid-5-cols main-body"> | ||
<script src="../js/script.js"></script> | ||
</body> | ||
</html> | ||
|
||
<body class="bg-grid font-bahnschrift" id="body"> | ||
|
||
<section | ||
id="hero" | ||
class="w-dvwpx-[10%] flex h-[calc(100dvh-7.5rem)] items-center justify-center p-3 pt-0" | ||
> | ||
<div id="holder" class="grid grid-cols-2 grid-rows-1"> | ||
<div> | ||
<div class="mb-2 text-[44px] font-bold"> | ||
<p> | ||
<span class="text-black">Celebrate </span | ||
><span class="text-[#FFC700]"> Software<br />Freedom Day</span> | ||
<span class="text-[#E4554E]">2024</span> with | ||
<span class="text-[#208820]"><br />Nepal Open Source Klub</span> | ||
</p> | ||
</div> | ||
<div class="my-2"> | ||
<p class="text-left text-xl font-semibold text-[#E4554E]"> | ||
"A celebration of innovation and open collaboration!" | ||
</p> | ||
</div> | ||
<div class="align my-5 flex items-center text-xl font-bold"> | ||
<button | ||
class="mr-2 h-[3.75rem] w-[13.75rem] rounded-[1.71rem] bg-[#FFDD50] text-center hover:border-2 hover:border-solid hover:border-[#FFDD50] hover:bg-transparent" | ||
> | ||
<a | ||
href="#" | ||
target="_blank" | ||
class="text-xl font-bold leading-4 text-black" | ||
>Learn More</a | ||
> | ||
</button> | ||
<button | ||
class="group h-[3.75rem] w-[13.75rem] rounded-[1.71rem] bg-[#208820] text-center hover:border-2 hover:border-solid hover:border-[#208820] hover:bg-transparent hover:text-black" | ||
> | ||
<a | ||
href="#" | ||
target="_blank" | ||
class="text-xl font-bold leading-4 text-white group-hover:text-black" | ||
>Register Here</a | ||
> | ||
</button> | ||
</div> | ||
<div class="mt-2 flex flex-row"> | ||
<img src="../assets/sfd_horizontal.svg" alt="SFD Horizontal" /> | ||
<img src="../assets/nosk_logo.svg" alt="Nosk Logo" /> | ||
</div> | ||
</div> | ||
<div class=""> | ||
<img | ||
src="../assets/intro.svg" | ||
alt="Candle Ceremony NOSK" | ||
class="z-10" | ||
/> | ||
</div> | ||
</div> | ||
</section> | ||
<script src="../js/navbar.js"></script> | ||
</body> | ||
</html> |