-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinks.html
More file actions
35 lines (35 loc) · 1.3 KB
/
links.html
File metadata and controls
35 lines (35 loc) · 1.3 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
<html>
<body>
<p>Linking to other sites: Ex - Movie Reviews:
<ul>
<li><a href="http://www.empireonline.com">Empire</a></li>
<li><a href="http://www.metacritic.com">Metacritic</li>
<li><a href="http://www.rottentomatoes.com">Rotten Tomatoes</a></li>
</ul>
</p>
<br>
<p>Linking to other pages on the same site:
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</p>
<br>
<a href="mailto:example@example.org">Email Links</a>
<br>
<a href="http://www.imdb.com" target="_blank">Internet Movie Database</a> (opens in new window)
<br>
Linking to a specific oart of the same page:
<h1 id="top">Film Making Terms</h1>
<a href="#arc_shot">Arc Shot</a><br>
<a href="#interlude">Interlude</a><br>
<br><br>
<h2 id="arc_shot">Arc Shot</h2>
<p>A shot in which the subject is photographed by an encircling or moving camera</p>
<br><br>
<h2 id="interlude">Interlude</h2>
<p>A brief, intervening film scene or sequence</p>
<br>
</body>
</html>