-
Notifications
You must be signed in to change notification settings - Fork 0
/
AboutMe.html
45 lines (40 loc) · 1.87 KB
/
AboutMe.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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="index.css" />
<link href="https://fonts.googleapis.com/css2?family=Bangers&family=Black+Ops+One&family=Creepster&family=La+Belle+Aurore&family=MedievalSharp&family=Orbitron&family=Rye&display=swap" rel="stylesheet">
</head>
<title>About Jimmy</title>
<body onload='document.form.input.focus()'>
<img src="/aboutMeImages/meBlackAndWhite.jpeg" alt="Photo of Jimmy, Background image by Max Saeling">
<h1>About Jimmy</h1>
<h2>What is a Jimmy?</h2>
<p>A Jimmy is a wild animal from the culinary industry. He spent most of his early years...</p>
<ul class="ul-el">
<li>Attending Culinary Institute of America</li>
<li>Learning how to cook</li>
<li>Eating fantastic cuisines</li>
<li>Traveling the world</li>
<li>Getting yelled at by chefs</li>
<li>Cooking with more precision to not get yelled at by chefs</li>
</ul>
<h2>His last years in the industry.</h2>
<ul class="ul-el">
<li>He became a chef</li>
<li>He became a mentor</li>
<li>Found the love of his life</li>
<li>He became a father</li>
</ul>
<div class="mail">
<h2>Enter a valid email to join Newsletter</h2>
<form name="form" action="#">
<ul>
<li class="email-el"><input type='text' name='input' placeholder="Valid Emali Here"/></li>
<li class="submit">
<button class="email-el" type="submit" name="submit" onclick="ValidateEmail(document.form.input)">Click To Join Newsletter</button>
</li>
</ul>
</form>
<script src="script.js"></script>
</body>
</html>