-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (30 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<title>Random Image Grabber</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/main.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Roboto&display=swap" rel="stylesheet" />
<script src="js/script.js" defer></script>
</head>
<body>
<div class="main">
<h1>Random Image Grabber</h1>
<h4>
This Demo Pulls Photos From
<a href="https://picsum.photos/" target="_blank">Lorem Picsum API</a>
</h4>
<div class="image-container hide">
<figure>
<img class="img" />
<figcaption>
<h3>Image by: <span class="author"></span></h3>
</figcaption>
</figure>
</div>
<button>Show me an image!</button>
</div>
</body>
</html>