-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (33 loc) · 1.35 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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>A Tribute page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<h1 class="title">Steve Jobs</h1>
<p class="description">1955-2011</p>
</header>
<section class="tribute">
<blockquote>
"Design is not just what it looks like and feels like. Design is how it works."
</blockquote>
<img src="sj.jpg" title="Steve Jobs" alt="Steve Jobs">
</section>
<section class="bio">
<h2>Biography</h2>
<p>
Steven Paul Jobs (February 24, 1955 – October 5, 2011) was an American entrepreneur, industrial designer, business
magnate, media proprietor, and investor. He was the co-founder, chairman, and CEO of Apple; the chairman and
majority shareholder of Pixar; a member of The Walt Disney Company's board of directors following its acquisition
of Pixar; and the founder, chairman, and CEO of NeXT. He is widely recognized as a pioneer of the personal
computer revolution of the 1970s and 1980s, along with his early business partner and fellow Apple co-founder
Steve Wozniak.
</p>
<hr>
</section>
</body>
</html>