-
Notifications
You must be signed in to change notification settings - Fork 0
/
lotus.html
36 lines (30 loc) · 1.02 KB
/
lotus.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
<!-- Joseph Wang -->
<!-- 12/27/2021 -->
<!-- Main page for "This Lotus Does Not Exist", changes image with every reload -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>This Lotus Does Not Exist</title>
<!-- link to external CSS -->
<link rel="stylesheet" href="lotus.css">
</head>
<body>
<div id="center">
<figure>
<!-- resize image to 256x256 -->
<!-- image is chosen randomly by JavaScript script -->
<img id="lotusimg" src="" width="256">
<figcaption id="caption">
<a id="link" href="lotus_about.html">About</a>
</figcaption>
</figure>
</div>
<!-- link script -->
<script src="lotus.js"></script>
<!-- show message if JavaScript is deactivated -->
<noscript>You need to enable JavaScript to view the full site.</noscript>
</body>
</html>