forked from ingrid23/ingrid23.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
family.html
97 lines (85 loc) · 2.29 KB
/
family.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ingrid Donaire </title>
<link href='http://fonts.googleapis.com/css?family=Poiret+One|Nunito:700|Pacifico|Anton|Dancing+Script:700|Fredoka+One|Playball|Fugaz+One|Marck+Script|Crafty+Girls|Petit+Formal+Script|Mystery+Quest|Monofett|Ribeye+Marrow|Faster+One' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
<a href="index.html" id="logo">
<h1>FAMILY</h1>
<h2>The Center of My Life</h2>
</a>
<nav>
<ul>
<li><a href="index.html">Portfolio</a></li>
<li><a href="Family.html" class="selected">Family</a></li>
<li><a href="Friends.html">Friends</a></li>
<li><a href="Church.html">Church</a></li>
</ul>
</nav>
<section id="popup" class="present">
<p>Click the button to display an alert box:</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
alert("I am an alert box!");
}
</script>
<iframe width="420" height="315" src="https://www.youtube.com/embed/NKFbV08HZNk" frameborder="0" allowfullscreen></iframe>
</section>
</header>
<table>
<tr>
<td>Name</td>
<td>Relationship</td>
<td>Photo</td>
<td>Name</td>
<td>Relationship</td>
<td>Photo</td>
</tr>
<tr>
<td>Ingrid Solano</td>
<td>Mother</td>
<td>
<div>
<img src="img/IMG_8996.JPG" alt="Mountain Landscape">
</div>
</td>
<td>Jorge Donaire</td>
<td>Father</td>
<td>
<div>
<img src="img/IMG_8955.JPG" alt="Mountain Landscape">
</div>
</td>
</tr>
<tr>
<td>Jorge David</td>
<td>Brother</td>
<td><div>
<img src="img/david.jpg" alt="Mountain Landscape">
</div></td>
<td>Jorge Daniel</td>
<td>Brother</td>
<td><div>
<img src="img/daniel.jpg" alt="Mountain Landscape">
</div></td>
</tr>
<tr>
<td>Mia Isavella</td>
<td>Sister</td>
<td><div>
<img src="img/IMG_8952.JPG" alt="Mountain Landscape">
</div></td>
<td>Cindy Gissel</td>
<td>Sister</td>
<td><div>
<img src="img/cindy.jpg" alt="Mountain Landscape">
</div></td>
</tr>
</table>
</body>
</html>