-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (83 loc) · 1.97 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
<!DOCTYPE html>
<html>
<head>
<title>My Grid Practice</title>
<link rel="stylesheet" href="style.css">
</head>
<div class="gridness" >
<header class="top-header">
<h1>Name and Nicknames</h1>
</header>
<div class="Grid">
<div class="first">
<header class="first__header">
<h3>James Franklin Lewallen</h6>
</header>
<section class="first__body">
<p>Nickname Lew or Red</p>
</section>
</div>
<div class="first">
<header class="first__header">
<h3>Frieda Lavern Lewallen</h3>
</header>
<section class="first__body">
<p>Nickname Frieda Jean or Squawl</p>
</section>
</div>
<div class="first">
<header class="first__header">
<h3>Terry Lee Morgan</h6>
</header>
<section class="first__body">
<p>Nickname Margarett or Captain Morgan</p>
</section>
</div>
<div class="first">
<header class="first__header">
<h3>Elizabeth Ann Jones</h3>
</header>
<section class="first__body">
<p>Nickname Bethann or Beth</p>
</section>
</div>
<div class="first">
<header class="first__header">
<h3>James Michael Lewallen</h6>
</header>
<section class="first__body">
<p>Nickname Mike</p>
</section>
</div>
<div class="first">
<header class="first__header">
<h3>Christopher James Nichols</h3>
</header>
<section class="first__body">
<p>Nickname Chris or Peddle Car</p>
</section>
</div>
<div class="first">
<header class="first__header">
<h3>Sarah Marie Irving</h3>
</header>
<section class="first__body">
<p>Nickname None</p>
</section>
</div>
<div class="first">
<header class="first__header">
<h3>Kevin Jones</h3>
</header>
<section class="first__body">
<p>Nickname Bubba Jones</p>
</section>
</div>
</div>
<aside>
<p>The Lewallen Family Tree</p>
</aside>
<footer>
<p>Brought to you by Terry</p>
</footer>
</div>