-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathexamples.htm
More file actions
60 lines (53 loc) · 1.55 KB
/
examples.htm
File metadata and controls
60 lines (53 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<!--
Title
Description
Name, date
credits or additional comments
// -->
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Examples</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main>
<section id="top">
</section>
<h1>Examples of Processing Work</h1>
<!-- Inner Page Navigation Links -->
<div class="innerPageLinks">
<a href="#character">Character</a>
<a href="#typography">Typography</a>
<a href="#video">Video</a>
</div>
<p>Introduction to your examples</p>
<section id="character">
<h2>Character</h2>
<img src = "media/Character-Advanced.png" width="1197" height="943" alt= "character" />
</section>
</section>
<section id="typography">
<h2>Typography</h2>
<img src = "media/example-title.png" width="595" height="634" alt= "typography example" />
</section>
<section id="video">
<h2>Video</h2>
<video width="800" height="800" controls>
<source src="media/ProcessingCompositionMovie.mp4" type="video/mp4">
Video unavailable
</video>
</section>
<!-- Inner Page Navigation Links -->
<div class="innerPageLinks">
<a href="#top">Top</a>
<a href="#character">Character</a>
<a href="#typography">Typography</a>
<a href="#video">Video</a>
</div>
</main>
<script src="script.js"></script>
</body>
</html>