-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpersonal.html
103 lines (93 loc) · 3.8 KB
/
personal.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=K2D:400,400i,700,700i|Kaushan+Script" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<title>Document</title>
</head>
<body>
<header class="site-header">
<div class="site-header__wrap">
<img class="headshot" src="images/Prince1.png" alt="prince-headshot">
</div>
<div class="site-header__wrap site-header__details">
<h1 class="site-title">Prince</h1>
<h4 class="sub-title"><span>Born June 7th, 1958-</span><span>Died April 21st, 2016</span></h4>
<h4 class="sub-title"><span>Minneapolis, MN</span></h4>
<nav class="site-nav">
<ul>
<li class="site-nav__link"><a href="index.html">Summary</a></li>
<li class="site-nav__link"><a href="career.html">Career</a></li>
<li class="site-nav__link active"><a href="personal.html">Personal</a></li>
<li class="site-nav__link"><a href="news.html">News</a></li>
</ul>
</nav>
</div>
</header>
<article class="personal">
<h2 class="page-title">Personal Info</h2>
<div class="section-wrapper">
<section>
<div class="section__item">
<div>
<h3 class="section__title">Birth Date and Country of Origin</h3>
<p class="section__content">June 7th, 1958, USA</p>
</div>
<div>
<h3 class="section__title">Birth Name</h3>
<p class="section__content">Prince Rogers Nelson</p>
</div>
<div>
<h3 class="section__title">Death Date</h3>
<p class="section__content">April 21, 2016</p>
</div>
</div>
<h3 class="section__title">List of Immediate Family Members</h3>
<div class="relatives__wrapper">
<section class="relatives__content"><img src="/images/M_Garcia.jpeg" alt="Mayte Garcia">
<h3>Mayte Garcia</h3>
<p>Married 1996-2000</p>
</section>
<section class="relatives__content"><img src="/images/no-image.svg">
<h3>Amir Nelson</h3>
<p>Son, died in infancy 1996</p>
</section>
<section class="relatives__content"><img src="/images/M_Testolini.jpeg" alt="Manuela Testolini">
<h3>Manuela Testolini</h3>
<p>Married 2001-2006</p>
</section>
<section class="relatives__content"><img src="/images/J_Nelson.jpeg" alt="John L. Nelson">
<h3>John L. Nelson</h3>
<p>Father</p>
</section>
<section class="relatives__content"><img src="/images/M_Shaw.jpeg" alt="Mattie Della (née Shaw)">
<h3>Mattie Della (née Shaw)</h3>
<p>Mother</p>
</section>
<section class="relatives__content"><img src="/images/T_Nelson.jpeg" alt="Tyka Nelson">
<h3>Tyka Nelson</h3>
<p>Sister</p>
</section>
</div>
</section>
</div>
</article>
<div class="quote">
<p>"I don't really care so much what people say about me because it usually is a reflection of who they are. For example, if people wish I would sound like I used to sound, then it says more about them than it does me."</p>
</div>
<footer>
<div class="footer-wrapper">
<ul class="footer-links">
<li><a href="https://twitter.com/prince">Twitter</a></li>
<li><a href="https://facebook.com/prince">Facebook</a></li>
<li><a href="https://instagram.com/prince">Princestagram</a></li>
<li><a href="https://princeestate.com">Prince Estate</a></li>
</ul>
<p>By The Team Formerly Known As Prince</p>
</div>
</footer>
</body>
</html>