-
Notifications
You must be signed in to change notification settings - Fork 1
/
friends.html
73 lines (55 loc) · 1.75 KB
/
friends.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
<!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>FRIENDS #AMIGOS</h1>
<h2>Last Project</h2>
</a>
<nav>
<ul>
<li><a href="index.html">Portfolio</a></li>
<li><a href="family.html">Family</a></li>
<li><a href="friends.html" class="selected">Friends</a></li>
<li><a href="church.html">Church</a></li>
</ul>
</nav>
<section id="popup" class="present">
<p>Click the button to demonstrate the prompt box.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
var person = prompt("Please enter your name", "");
if (person != null) {
document.getElementById("demo").innerHTML =
"Hello " + person + "! How is your precentation going?";
}
}
</script>
<p style="color:black" id="ellos" class="ellos">NAME OF SOME OF MY FRIENDS:</p>
<ul style="color:blue">
<li>BECKY</li>
<li>ANA</li>
<li>MILEYDA</li>
<li>LAISHA</li>
<li>ABBY</li>
<li>EMERSON</li>
<li>ROBERT</li>
<li>MARCELO</li>
<li>STEVEN</li>
<li>JOSE</li>
<li>WILLIAN</li>
<li>CRISTIAN</li>
</ul>
<iframe width="560" height="315" src="https://www.youtube.com/embed/_oirN60LoEI" frameborder="0" allowfullscreen></iframe>
</section>
</header>
</body>
</html>