-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (59 loc) · 2.54 KB
/
index.html
File metadata and controls
66 lines (59 loc) · 2.54 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Basic HTML5 Document" />
<meta name="keywords" content="HTML5, Responsive" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&family=Arvo&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css" type="text/css" />
<script src="code.js" defer></script>
<title>Exam Practice</title>
</head>
<body>
<div id="headerBox">
<h1 id="heading"></h1>
</div>
<div id="belowH1">
<p>
This webpage will generate a new pair each time you click the button below. <br>
There are many ways to practice visual analysis: you can answer guiding questions, fill out a visual analysis chart, or practice writing a visual analysis essay. <br>
Make sure to send your practice to your Teaching Assistant for feedback!
</p>
<form>
<fieldset class="fs" id="categoryFS">
<legend>Category</legend>
<input type="radio" id="all" name="category" value="all" checked>All
<input type="radio" id="art" name="category" value="art">Art
<input type="radio" id="architecture" name="category" value="architecture">Architecture
</fieldset>
</form>
<form>
<fieldset class="fs" id="numFS">
<legend>Number of Works</legend>
<input type="radio" id="one" name="num" value="1">One
<input type="radio" id="two" name="num" value="2" checked>Two
</fieldset>
<fieldset class="fs" id="controlsFS">
<legend>Controls</legend>
<input class="button" id="imgButton" type="button" value="Show new image(s)">
<input class="button" id="metaButton" type="button" value="Show metadata">
</fieldset>
</form>
<br>
<div id="pictureLeft" class="pictureBox">
<span id="imgA"> </span>
</div>
<div id="pictureRight" class="pictureBox">
<span id="imgB"> </span>
</div>
<div id="captionLeft" class="captionBox">
<span id="capA"> </span>
</div>
<div id="captionRight" class="captionBox">
<span id="capB"> </span>
</div>
</div>
</body></html>