-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
121 lines (109 loc) · 5.82 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
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
115
116
117
118
119
120
121
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico and apple-touch-icon(s) in the root directory -->
<link rel="stylesheet" href="css/vendor/normalize.css">
<link rel="stylesheet" href="css/vendor/foundation.min.css" />
<link rel="stylesheet" href="css/main.css">
<script src="js/vendor/modernizr.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class="contain-to-grid fixed">
<nav class="top-bar" data-topbar>
<ul class="title-area">
<li class="name">
<h1><a href="/">Ernest Hemingway</a></h1>
</li>
</ul>
<section class="top-bar-section">
<!-- Right Nav Section -->
<ul class="right">
<li><a href="#summary">Summary</a></li>
<li>
<a href="#works">Selected works</a>
</li>
</ul>
</section>
</nav>
</div>
<div class="row">
<div class="large-12 columns">
<div class="panel">
<section id="summary">
<h2>Ernest Hemingway</h2>
<p>
Ernest Miller Hemingway (July 21, 1899 – July 2, 1961) was an American author and journalist. His
economical and understated style had a strong influence on 20th-century fiction, while his life of
adventure and his public image influenced later generations. Hemingway produced most of his work
between the mid-1920s and the mid-1950s, and won the Nobel Prize in Literature in 1954. He published
seven novels, six short story collections, and two non-fiction works. Additional works, including
three novels, four short story collections, and three non-fiction works, were published posthumously.
Many of his works are considered classics of American literature.
</p>
<p>
Hemingway was raised in Oak Park, Illinois. After high school he reported for a few months for The
Kansas City Star, before leaving for the Italian front to enlist with the World War I ambulance
drivers. In 1918, he was seriously wounded and returned home. His wartime experiences formed the
basis for his novel A Farewell to Arms (1929).
</p>
<p>
In 1921, he married Hadley Richardson, the first of his four wives. The couple moved to Paris, where
he worked as a foreign correspondent and fell under the influence of the modernist writers and artists
of the 1920s "Lost Generation" expatriate community. He published his first novel, The Sun Also Rises
in 1926. After his 1927 divorce from Hadley Richardson, Hemingway married Pauline Pfeiffer; they
divorced after he returned from the Spanish Civil War where he had been a journalist, and after which
he wrote For Whom the Bell Tolls (1940). Martha Gellhorn became his third wife in 1940; they separated
when he met Mary Welsh in London during World War II. He was present at the Normandy Landings and the
liberation of Paris.
</p>
<p>
Shortly after the publication of The Old Man and the Sea (1952), Hemingway went on safari to Africa,
where he was almost killed in two successive plane crashes that left him in pain or ill health for
much of his remaining lifetime. Hemingway maintained permanent residences in Key West, Florida (1930s)
and Cuba (1940s and 1950s), and in 1959, he bought a house in Ketchum, Idaho, where he committed suicide
in the summer of 1961.
</p>
</section>
<section id="works">
<h2>Selected Works</h2>
<p>
Shortly after the publication of The Old Man and the Sea (1952), Hemingway went on safari to Africa,
where he was almost killed in two successive plane crashes that left him in pain or ill health for
much of his remaining lifetime. Hemingway maintained permanent residences in Key West, Florida (1930s)
and Cuba (1940s and 1950s), and in 1959, he bought a house in Ketchum, Idaho, where he committed suicide
in the summer of 1961.
</p>
</section>
<div class-"right">
Source: <a href="http://en.wikipedia.org/wiki/Ernest_Hemingway" target="_blank">http://en.wikipedia.org/wiki/Ernest_Hemingway</a>
</div>
</div>
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery.js"><\/script>')</script>
<script src="js/vendor/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-XXXXX-X');ga('send','pageview');
</script>
</body>
</html>