-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 819 Bytes
/
Copy pathindex.html
File metadata and controls
22 lines (22 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML+CSS</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Happy Valentine's! 💗</h1>
<div class="content">
<h2>Time for your date ⏰</h2>
<img
id="mainImage"
src="https://media.giphy.com/media/GadbeEMQmj9Sy0kBeb/giphy.gif?cid=ecf05e475nzaa9bwu3cz0a04tvlpo9k7njp7r4w5n5izxo12&ep=v1_gifs_search&rid=giphy.gif&ct=g"
alt="Strawberry Shortcake"
width="300"
/>
<h4 id="dateMessage">🍓 She's berry sweet, just like strawberries!!</h4>
<button id="dateButton" onclick="startDate()">💗 Let's go! 💗</button>
</div>
<script src="script.js"></script>
</body>
</html>