-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (30 loc) · 1.28 KB
/
Copy pathindex.html
File metadata and controls
34 lines (30 loc) · 1.28 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Old iPhone Giveaway</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="giveaway-container">
<img src="random-picture.jpg" alt="Giveaway Item" class="giveaway-image">
<h1>OLD IPHONE GIVEAWAY</h1>
<p class="giveaway-description">
Don't miss out on the chance to win
an iconic old iPhone! Enter our giveaway
before 11:30 AM and you could be the lucky
individual taking home a piece of tech history.
This special edition iPhone is a collector's dream
and could be yours. Hurry, time is ticking—participate now!
</p>
<div id="timer">
<div class="time-section"><span id="days">00</span><span class="time-label">Days</span></div>
<div class="time-section"><span id="hours">00</span><span class="time-label">Hours</span></div>
<div class="time-section"><span id="minutes">00</span><span class="time-label">Mins</span></div>
<div class="time-section"><span id="seconds">00</span><span class="time-label">Secs</span></div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>