-
Notifications
You must be signed in to change notification settings - Fork 0
/
amazing.html
57 lines (45 loc) · 2.42 KB
/
amazing.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>WCAG Level AAARGH</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<style>
body {
background-color: #fff;
padding-bottom: 10rem;
}
h1 {
color: #aaa;
}
img {
max-width: 300px;
}
p {
max-width: 80ch;
}
</style>
</head>
<body>
<h1>The most accessible page in the world</h1>
<h4>Incredibly interesting pictures</h4>
<img src="https://i.dailymail.co.uk/i/pix/2014/11/14/1415991472382_wps_28_Arnold_Schwarzenegger_fee.jpg" />
<img src="https://idsb.tmgrup.com.tr/ly/uploads/images/2022/07/26/220780.jpg" alt="image" />
<h3>The best motivational speech ever written</h3>
<p>I don't know what to say, really. Three minutes till the biggest battle of our professional lives all comes down to today. Now either we heal as a team or we're gonna crumble, inch by inch, play by play, 'til we're finished.</p>
<p>We're in hell right now, gentlemen, believe me. And, we can stay here -- get the shit kicked out of us -- or we can fight our way back into the light. We can climb outta hell one inch at a time.</p>
<p>Now, I can't do it for you. I'm too old. I look around. I see these young faces, and I think -- I mean -- I made every wrong choice a middle-aged man can make. I, uh, I pissed away all my money, believe it or not. I chased off anyone who's ever loved me. And lately, I can't even stand the face I see in the mirror.</p>
<p>You know, when you get old in life things get taken from you. I mean that's...part of life. But, you only learn that when you start losing stuff. You find out life's this game of inches. So is football. Because in either game, life or football, the margin for error is so small -- I mean one-half a step too late, or too early, and you don't quite make it. One-half second too slow, too fast, you don't quite catch it.</p>
<a href="#">Read more</a>
<h5>Sign up for more motivational speeches every week!</h5>
<form>
<label>Email address</label>
<input id="email" name="email" type="text" />
<button>Submit</button>
</form>
<a href="/">
<img src="http://www.pigletsplaycentre.co.uk/wp-content/uploads/2013/05/special-offer-logo.jpg" />
</a>
</body>
</html>