-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9d2035d
commit ef45129
Showing
1 changed file
with
20 additions
and
17 deletions.
There are no files selected for viewing
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,24 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<title>Surprise...!</title> | ||
<link rel="stylesheet" type="text/css" href="styles.css"> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Developer Day Attendance Confirmation</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto:wght@400;700&display=swap"> | ||
</head> | ||
|
||
<body> | ||
<div class="container"> | ||
<h1>UM do u love me?</h1> | ||
<div class="buttons"> | ||
<button id="no-btn">No</button> | ||
<button id="yes-btn">Yes</button> | ||
</div> | ||
<div class="popup" id="popup"> | ||
<p>Aww, thank you!</p> | ||
<!-- Adding Iron Man GIF --> | ||
<div class="gif-container"> | ||
<img src="https://media.giphy.com/media/l3975CZuyQgoNVuOA/giphy.gif" alt="Iron Man GIF"> | ||
</div> | ||
</div> | ||
<div class="container"> | ||
<div class="content"> | ||
<img src="DD '24 Logo - With Tagline.png" alt="Developer Day Logo"> | ||
<h1>Thank you!</h1> | ||
<p>Thank you for attending Developer Day 2024, Your attendance for Developer Day has been marked.</p> | ||
</div> | ||
<script src="script.js"></script> | ||
</div> | ||
<div class="background-text"> | ||
<span>DREAM DEVELOP</span> | ||
<span>DELIVER</span> | ||
</div> | ||
</body> | ||
|
||
</html> |