-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.13 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Fork Me! FCC: Test Suite Template</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<main id="main">
<p id="title">Dr. Norman Borlaug</p>
<div id="img-div">
<center>
<img
id="image"
height="auto"
style="max-width: 100%; display: block"
/>
</center>
<div id="img-caption">Image of Norman</div>
<p id="tribute-info">
1914 - Born in Cresco, Iowa<br />
1933 - Leaves his family's farm to attend the University of Minnesota,
thanks to a Depression era program known as the "National Youth
Administration"<br />
1935 - Has to stop school and save up more money. Works in the
Civilian Conservation Corps, helping starving Americans. "I saw how
food changed them", he said. "All of this left scars on me."
</p>
<a href="#" target="_blank" id="tribute-link">
Other Information on Norman</a
>
</div>
</main>
<script src="js/index.js"></script>
</body>
</html>