-
Notifications
You must be signed in to change notification settings - Fork 14
/
FirstWebsite.html
88 lines (76 loc) · 2.08 KB
/
FirstWebsite.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
<style>
body {
font-family: Times, serif;
color: white;
background-color: black;
}
.container {
max-width: 90rem;
margin: 2rem auto;
padding: 0px 2rem;
}
.header {
padding: 2rem;
margin: 1rem 0px;
text-align: center;
}
header > .title {
margin-bottom: 1rem;
}
.tribute {
display: grid;
grid-template-columns: 2fr 1fr;
max-width: 78rem;
margin: 0px auto;
background: white;
color: black;
align-items: center;
padding: 0px 0px 0px 1rem;
}
.tribute blockquote {
text-align: center;
font-size: 3rem;
}
.tribute img {
max-width: 100%;
}
.bio {
margin: 2rem auto;
padding: 0px 0.5rem;
max-width: 40rem;
}
.bio > h2 {
margin-bottom: 1rem;
font-size: 3rem;
line-height: 1.2;
}
.bio > p {
font-size: 1.2rem;
line-height: 1.4;
}
.bio > hr {
margin-top: 2rem;
}
</style>
<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="https://cdn.profoto.com/cdn/053149e/contentassets/d39349344d004f9b8963df1551f24bf4/profoto-albert-watson-steve-jobs-pinned-image-original.jpg?width=1280&quality=75&format=jpg" />
</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>