-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (91 loc) · 3.17 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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="robots" content="noindex, nofollow" />
<title>The Nightmare Before Christmas</title>
<link
href="https://fonts.googleapis.com/css?family=Caveat+Brush"
rel="stylesheet"
type="text/css"
/>
<link
href="https://fonts.googleapis.com/css?family=PT+Serif"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<div id="wrapper">
<img
src="nightmare.jpg"
alt="Nightmare Before Christmas Poster"
id="img"
/>
<!-- I chose header to reflect that this content is the headline of the poster, similar to the idea of a newspaper headline -->
<header>
<h1 id="producer">Tim Burton's</h1>
<h1>
<a
href="http://movies.disney.com/the-nightmare-before-christmas"
title="Official Nightmare Before Christmas website"
>The Nightmare Before Christmas</a
>
</h1>
</header>
<main>
<!-- Words written in all caps on the original movie poster were assigned an html tag of <strong> and then styled appropriately in the CSS file. -->
<p>
<strong>Touchstone Pictures</strong> presents
<strong> Tim Burton's "The Nightmare Before Christmas"</strong> A
<strong>Burton/Dinovi Production</strong>
</p>
<p>
Music, Lyrics & Score by <strong>Danny Elfman</strong> | Based on
a Story and Characters by <strong>Tim Burton</strong> | Adaptation by
<strong>Michael McDowell</strong> |
</p>
<p>Animation Screenplay by <strong>Caroline Thompson</strong></p>
<p>
Produced by <strong>Tim Burton </strong> and
<strong> Denise Dinovi</strong> | Directed by
<strong>Henry Selick</strong> | Touchstone Pictures
</p>
<!-- Information tangentially related to the main content -->
<aside role="complementary">
<p>A <strong>Burton/Dinovi Production</strong></p>
<p>
Distributed by
<strong>Buena Vista Pictures Distribution, Inc.</strong> |
©Touchstone Pictures
</p>
<p id="audio">
<strong>Dolby Stereo<br />in selected theatres</strong>
</p>
<p id="rating">
<strong
>PG Parental Guidance Suggested<br />Some material may not be
suitable for children</strong
>
</p>
<p id="soundtrack">
Soundtrack available on<br />Walt Disney Records
</p>
</aside>
<!-- Movie poster footer -->
<footer id="mainFooter">
<p>
<small><strong>printed in U.S.A</strong></small>
</p>
</footer>
</main>
<!-- Page level footer -->
<footer role="contentinfo">
<p>
Created for: COMP 1002. Created by: Jenna Cox. Created on: 12-22-2017.
</p>
</footer>
</div>
</body>
</html>