Skip to main content

Exercise 11: YouTube Video Link Parameters (Finals Web Prog)








(Code for HTML:)

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> Youtube Videos Link Parameters </title>
<link rel="stylesheet" href="Exercise11iFrameVideo.css">
</head>

<body>

<div class="navbar">
<a href="#home">Home</a>
<a href="https://scontent.fmnl19-1.fna.fbcdn.net/v/t1.6435-9/183696100_2901575863495019_8667639209325296233_n.jpg?_nc_cat=100&ccb=1-3&_nc_sid=0debeb&_nc_eui2=AeGmZRPZmRmXrOArSHq09vPIKfIhC24RAaYp8iELbhEBpvFlFRJZ9cKWpyHOm3J-Tle-7AutVdLWleXZ1XrgIqBW&_nc_ohc=HTCL7Rxi8jAAX8t6M2L&_nc_ht=scontent.fmnl19-1.fna&oh=98676492910e87038adfb8cd76772c33&oe=60BD0C01" target="Jillian Dela Cruz">About</a>
<a href="https://scontent.fmnl19-1.fna.fbcdn.net/v/t1.6435-9/184092486_2901582303494375_8241790509753611562_n.jpg?_nc_cat=102&ccb=1-3&_nc_sid=0debeb&_nc_eui2=AeEcGjkdkuVwe24baufG6zhykYhz_1E_MoGRiHP_UT8ygdaS2aeggh_uZtm0KJNtqmY2AUNQC7U_51goxmKAeRY3&_nc_ohc=EFWMqsC7uYcAX8X2RFv&_nc_ht=scontent.fmnl19-1.fna&oh=5ec2565718a16b28cc6502231ebefd05&oe=60BC4D14./" target="Jillian Dela Cruz">Contacts</a>
</div>

<div id="row1" class="row">
<div class="column1">

</div>
<div id="row1" class="row">
<div class="column2">
<h1 id="home"> Favorite Youtube Creator </h1> <h3>
<hr>
<h1> Top 1 Favorite Vlogger "Jeorella Gatchalian"</h1>
<p>  My Favorite Content Creator she just being herself </p>
<iframe width="420" height="315"
src="https://www.youtube.com/embed/5saPEMSBvI4?controls=0">
</iframe>
<hr>
<h1> Top 2 Favorite Vlogger "Ry Velasco" </h1>
<p>  My Inspiration to become Successful in Life </p>
<iframe width="420" height="315" 
src="https://www.youtube.com/embed/p-EDhe9n7JU?controls=0">
</iframe>
<hr>
<h1> Top 3 Favorite Vlogger "Rei Germar" </h1>
<p>  She teaches their viewers how to embrace/love their selves and become Confident whatever your body is</p>
<iframe width="420" height="315"
src="https://www.youtube.com/embed/PBDsCUqPVQI?controls=0">
</iframe>
</div>
<div id="row1" class="row">
<div class="column3">

</div>
<footer id="footer" style="background-color: #000000;padding: 20px;">
<p style="margin-left: 65px;color:#ffffff;"> </p>
<a href="https://www.instagram.com/intheprocess_jillian/?hl=en" style= "margin-left:70px;color: #ffffff;"> My Instagram Account </a> <br>
</footer>
</body>
</html>

(Code for CSS:)

* {
box-sizing: border-box;
}

body, html {
height: 100%;
min-height: 100vh;
margin: 0;
position: relative;
font-family: "Consolas";
background-repeat: no-repeat;
padding-bottom: 30px;
}

iframe:focus {
outline: none;
}

iframe[seamless] {
display: block;
}

.navbar {
overflow: hidden;
background-color: #000000;
}

.navbar a {
float: left;
font-size: 16px;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}

.dropdown {
float: left;
overflow: hidden;
}

.dropdown .dropbtn {
font-size: 16px;  
border: none;
outline: none;
color: white;
padding: 14px 16px;
background-color: inherit;
font-family: inherit;
margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
background-color: #9595cf;
}

.dropdown-content {
display: none;
position: absolute;
background-color: #f5ff8c;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.0);
z-index: 1;
}

.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}

.dropdown-content a:hover {
background-color: #b8815a;
}

.dropdown:hover .dropdown-content {
display: block;
}

.row::after {
content: "";
clear: both;
display: table;
}

[class*="col-"] {
float: left;
padding: 15px;
}

.column1 {
float: left;
width: 2%;
background-color: #ffffff;
height: 10px;
}

.column2 {
border: 10px solid #ffffff;
float: left;
width: 96%;
padding-left: 25px;
padding-right: 25px;
}

.column3 {
float: right;
width: 2%;
background-color: #ffffff;
height: 10px;
}

[class*="col-"] {
width: 100%;
}

@media only screen and (min-width: 600px) {
.col-s-1 {width: 8.33%;}
.col-s-2 {width: 16.66%;}
.col-s-3 {width: 25%;}
.col-s-4 {width: 33.33%;}
.col-s-5 {width: 41.66%;}
.col-s-6 {width: 50%;}
.col-s-7 {width: 58.33%;}
.col-s-8 {width: 66.66%;}
.col-s-9 {width: 75%;}
.col-s-10 {width: 83.33%;}
.col-s-11 {width: 91.66%;}
.col-s-12 {width: 100%;}
}

@media only screen and (min-width: 768px) {
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
}

#footer {
position: relative;
height: 150px;
margin-top: -100px;
clear: both;
}


Comments

Popular posts from this blog

Exercise 13: Login and Sign Up Forms (Finals Interactive)

(CODE FOR LOGIN HTML:) <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <title> Login and Sign Up </title> <link rel="stylesheet" href="Exercise13Login.css"> </head> <body> <form name="form"> <h2>Login</h2> <p> Log in to Multimedia Website </p> <div> <label for="text"> <b> Username </b> </label> <input  id="user"  name="user" type="text" placeholder="Username"> </div> </div> <div> <label for="psw"> <b> Password </b> </label> <input id="pass" name="pass" type="password"  placeholder="Password"> </div> </div> <div> <button type="button" value="Login" onClick="validate(this.form)&qu

12 Months/ Finding the Events

  <html> <body style="background-color:#CBC6DC;"> <h2><p style="font-family:century gothic;"> ENTER NUMBER OF MONTH:</p></h2> <br><input id="text_a" type="text;" /> <p id="answer"></p> <button onclick="myFunction()">Submit</button> <script> function myFunction() { var a=document.getElementById("text_a").value; if (a=="1")   { document.getElementById("answer").innerHTML="1 - January, New Year";   } else if (a=="2")   {