-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest.html
55 lines (48 loc) · 2.05 KB
/
test.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
<!doctype html>
<html>
<head>
<title>Nick's Awesome Page</title>
<link href='http://fonts.googleapis.com/css?family=Russo+One' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="mystyles.css" media="screen" />
</head>
<body>
<p class="red">Hey, I'm a paragraph! And $ I like $. And I'm "a quote" But I'm ‘a better quote’.</p>
<p>Hey, I'm <a href="http://google.com">a link!</a></p>
<p><a href="https://www.paypal.com/cgi-bin/[email protected]&cmd=_xclick¤cy_code=USD&amount=25&item_name=Buy%20Nick%20some%20sweet%20potato%20fries"> Send Nick some sweet potato fries</a></p>
<img src="http://upload.wikimedia.org/wikipedia/commons/2/22/Turkish_Van_Cat.jpg" width="100">
<h1 class="center">It's time for BACON</h1>
<ul>
<li>A thing</li>
<li>Another thing</li>
<li>Some other thing</li>
</ul>
<ol>
<li>First thing</li>
<li>Second thing</li>
<li>Third thing</li>
<li>Random thing</li>
<ol>
<table>
<tr>
<td>Some</td>
<td>Thing</td>
<td>In</td>
</tr>
<tr>
<td>Thing 1</td>
<td>Thing 2</td>
<td>Thing 3</td>
</tr>
<tr>
<td>Thing 4</td>
<td>Thing 5</td>
<td>Thing 6</td>
</tr>
</table>
<iframe width="560" height="315" src="http://www.youtube.com/embed/18-xvIjH8T4" frameborder="0" allowfullscreen></iframe>
<blockquote class="twitter-tweet" lang="en"><p>Making great progress in today's Basic Web Development class <a href="http://t.co/cEWigejK9G">http://t.co/cEWigejK9G</a> <a href="http://t.co/wIXwTxReoU">pic.twitter.com/wIXwTxReoU</a></p>— Awesome Inc (@awesome_inc) <a href="https://twitter.com/awesome_inc/statuses/409404280450203649">December 7, 2013</a></blockquote>
<script async src="http://platform.twitter.com/widgets.js" charset="utf-8"></script>
<h2>Google Form goes next</h2>
<iframe src="https://docs.google.com/forms/d/1qdS7S4NEp4Vud0wOtTuJq7jT7JxNvgV_lH3tBXTxzaE/viewform?embedded=true" width="760" height="500" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
</body>
</html>