blob: 5852ebe73610c9c07ef9e406444a3f76a24df69b (
plain)
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
<!doctype html>
<html>
<head>
<title>MegaPixels</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<link rel='stylesheet' href='/assets/css/fonts.css' />
<link rel='stylesheet' href='/assets/css/css.css' />
</head>
<body>
<header>
<a class='slogan' href="/">
<div class='logo'></div>
<div class='site_name'>MegaPixels</div>
<span class='sub'>The Darkside of Datasets</span>
</a>
<div class='links'>
<a href="/search">Face Search</a>
<a href="/datasets">Datasets</a>
<a href="/blog">Blog</a>
<a href="/about">About</a>
</div>
</header>
<div class="content">
<section>
<h1>Second post!</h1>
<div class='meta'>
<div>
<div class='gray'>Posted</div>
<div>2018-12-02</div>
</div>
<div>
<div class='gray'>By</div>
<div>Adam Harvey</div>
</div>
</div>
</section>
<section><h1>H1</h1>
<h2>H2</h2>
<h3>H3</h3>
<h4>H4</h4>
<p>I declare a thumb war. Ha!</p>
<p>Let's get one thing straight. <a href="https://www.google.com">I'm an inline-style link</a>. URLs and URLs in angle brackets will automatically get turned into links. <a href="http://www.example.com">http://www.example.com</a> or <a href="http://www.example.com">http://www.example.com</a> and sometimes example.com. We have links, but can we break the chain?</p>
<p>Face it. Time to face facts. Look. I'm not going to say this more than once, so listen up. Listen up. Get real. Get ready. This isn't going to be easy. This isn't going to be the easiest <strong>bold text</strong> <em>italic text</em> <del>strikethrough</del></p>
<ol>
<li>Potato</li>
<li>Potato<ul>
<li>Un-related sub-potato</li>
</ul>
</li>
<li>Potato</li>
<li>Potato</li>
</ol>
<pre><code>print("blah")
print "i'm a python 2 style print statement"
i<span class="color: red">'m a syntax error</span>
</code></pre>
<p><img src="vision.png" alt="hmf" title="Computer vision at its finest, folks!">
<img src="vision.png" alt="blah" title="This image has been repeated twice but it shouldn't MATTER!"></p>
<h2>Hell Yeah</h2>
<table>
<thead><tr>
<th>Tables</th>
<th style="text-align:center">Are</th>
<th style="text-align:right">Cool</th>
</tr>
</thead>
<tbody>
<tr>
<td>col 3 is</td>
<td style="text-align:center">right-aligned</td>
<td style="text-align:right">$1600</td>
</tr>
<tr>
<td>col 2 is</td>
<td style="text-align:center">centered</td>
<td style="text-align:right">$12</td>
</tr>
<tr>
<td>zebra stripes</td>
<td style="text-align:center">are neat</td>
<td style="text-align:right">$1</td>
</tr>
</tbody>
</table>
<blockquote><p>Blockquotes are very handy in email to emulate reply text.
This line is part of the same quote.</p>
</blockquote>
<p>Quote break.</p>
<blockquote><p>This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can <em>put</em> <strong>Markdown</strong> into a blockquote. Now no reason to get <strong>swervy</strong> when your <em>orange</em> attitude is what's making the text <em>wrap</em>.</p>
</blockquote>
<div class="test">And did I mention contain HTML??!!!</div><script type="text/javascript">document.querySelector('.test').style.backgroundColor = 'red'</script><hr>
<p>That's it!</p>
</section><section class='wide'><p><img src="wideimage.jpg" alt="wide" title="This image should be wide. I mean REALLY wide. Picture somebody who drives a pickup truck and who purposefully parks it to take up two or even three spaces. They're coming out of the Costco now with a whole lotta paper towels and mustard on a giant pallet. Power tools deluxe, fasteners, drywall, everything you need to build a shed."></p>
</section>
</div>
<footer>
<div>
<a href="/">MegaPixels.cc</a>
<a href="/legal/terms/">Terms of Use</a>
<a href="/legal/privacy/">Privacy</a>
<a href="/about/">About</a>
<a href="/about/team/">Team</a>
</div>
<div>
MegaPixels ©2017-19 Adam R. Harvey / <a href="https://ahprojects.com">ahprojects.com</a>
</div>
</footer>
</body>
<script src="/assets/js/app/site.js"></script>
</html>
|