-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathattributes.html
More file actions
68 lines (54 loc) · 2.85 KB
/
Copy pathattributes.html
File metadata and controls
68 lines (54 loc) · 2.85 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
67
68
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>attributes html examples</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div id="Page">
<header id="banner">
<h1>Attributes</h1>
<nav id="nav">
<ul>
<li><a href=index.html>Home</a></li>
<li><a href=nested.html>Nested Examples</a></li>
<li><a href=tags.html>Tag Examples</a></li>
<li><a href=Ariah.html>Ariah's Page</a></li>
<li><a href=Jason.html>Jason's Page</a></li>
<li><a href=Marc.html>Marc's Page</a></li>
<li><a href=Max.html>Max's Page</a></li>
</ul>
</nav>
</header>
<p>
<!--- all necessary stuff for page goes here!-->
<h2 style = "text-align: center;"></h2> <!--(style)-->
<a href=Marc.html>Marc's Page</a> <!--(herf)-->
<img class = "torchImgSizeRight" src="humanTorch2.png"> <!--(src)-->
<title>Ariah's Page</title> <!--(title)-->
<!-- Ariah Sargent -->
<!-- from tags.html ; added action and target attributes -->
<form style="padding:30px 0px 0px 250px;" action="https://www.marvel.com/teams-and-groups/fantastic-four" target="_blank">
<label style="font-size:medium;" for="fantastic">Which Fantastic Four character is your favorite?</label>
<select name="hero" id="hero">
<option value="InvisibleWoman">Invisible Woman</option>
<option value="MrFantastic">Mr. Fantastic</option>
<option value="Thing">Thing</option>
<option value="Torch">Torch</option>
</select>
<input type="submit">
</form>
<!-- from nested.html ; added dir and draggable attributes -->
<i><p dir="auto" style="font-size:larger; padding-top:1px;"><abbr title="Deoxyribonucleic Acid" draggable="true"><b><em>DNA</em></b></abbr> carries genetic information that gives a living organism's cells instructions on how to <em>grow</em>, <em>reproduce</em> and <em>function</em>.</p></i>
</p><p>you can drag DNA around it's okay</p>
</p>
</div>
<h2 class="headsize3">What is your favorite sandwich? </h2>
<ol id="noli" reversed>
<li><span><p class="headsize2">You know what to pick <sub><font color ="red">-Napolean Bonaparte</font></sub></p></li></span>
<li><p class="headsize2">You know what to pick <sub><font color ="red">-Steve Jobs</font></sub></p></li>
<li><p class="headsize2">You know what to pick <sub><font color ="red">-C̶̤̻̏t̷͙́͜h̷̼̾̂u̸̲͌̈́ļ̵̦̓͝ȟ̶͍̙ṵ̴̚͜</font></sub></p></li>
</ol>
</body>
</html>