-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<title>Hire Me</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="main-container">
<div class="text-container">
<h2 class="question">Will you hire me?</h2>
</div>
<div class="wrapper">
<img
class="gif"
alt="gif"
src="https://media.giphy.com/media/Cqq2DvlmbNo8izMrWO/giphy.gif"
/>
</div>
<div class="btn-group">
<button class="hire-btn">Hire</button>
<button class="not-now-btn">Not now</button>
</div>
</div>
<div class="form-container">
<form id="email-form">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required />
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Send</button>
</form>
</div>
<script src="script.js"></script>
</body>
</html>