-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (33 loc) · 1.55 KB
/
index.html
File metadata and controls
38 lines (33 loc) · 1.55 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
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description"
content="Add captivating splash images to your projects with this simple JavaScript Splash Image application." />
<meta name="keywords"
content="splash image, JavaScript splash, image display, basic image project, visual effects" />
<meta property="og:title" content="Splash Image" />
<meta property="og:description"
content="Add captivating splash images to your projects with this simple JavaScript Splash Image application." />
<meta property="og:image" content="https://coderespite.com/image/js-projects/splash-image.png" />
<meta property="og:url" content="https://coderespite.com/projects/js-projects/splash-image" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Splash Image" />
<meta name="twitter:description"
content="Add captivating splash images to your projects with this simple JavaScript Splash Image application." />
<meta name="twitter:image" content="https://coderespite.com/image/js-projects/splash-image.png" />
<meta charset="UTF-8">
<link rel="stylesheet" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Splash Image</title>
</head>
<body>
<div class="image">
<figure>
<img id="imageId" alt="">
<figcaption id="caption" style="color: white;"></figcaption>
</figure>
<button>Next</button>
</div>
<script src="script.js"></script>
</body>
</html>