Saturday, February 27, 2021

 

Exercise #1




<html>

<head> <title>First Javascript Program place on the body </title> </head>

<body>

<script language = "javascript" type = "text/javascript">

<!-- use comment for browsers that does not support javascipt

var name, course,address,talent,subject ;

document.write("Hello World!") ;

document.write("<br> welcome to Javascript Programming <" );


name=prompt("Enter your name")

document.write("<br> Name : <b>" +name );

address=prompt("Enter your Adress")

document.write("<br> Address: <b>" +address );

course=prompt("Enter your course")

document.write("<br> Course <b>:" +course);

talent=prompt("Enter your talent")

document.write("<br> talent: <b>" +talent );

favoritesubject=prompt("Enter your favoritesubject")

document.write("<br> favoritesubject: <b>" +favoritesubject );


//-->

</script>

</body>


  Exercise 1:  favorite



<!DOCTYPE html>
<html>
<head>
<title>My Profile</title>
<style>
body {background-color: powderblue;} // styles applied to body tag
h1 {color: blue;} // styles applied to h1 tag
p {color: red;} // styles applied to p tag
hr{ border: 10px solid red; }
</style>
</head>
<body>
<h1> Name : Adrian Guisihan </h1>
<h1>My favorite Songs </h1>
<hr>
<ol>
<li> the lazy song
<li> superman
<li> lemonade
<li> fall for you
</lol>

<h2>My favorite Subjects </h2>
<ul>
<li> Photography
<li> Video and Film Productions
<li> drawing
<li> math
</ul>
<h1> Links to your portfolio </h1>
<p> <a href="https://www.facebook.com/adrian.guisihan.3"> Facebook </a> </p>
<p><a href="https://frst-blog-101.blogspot.com/ " target =
blank> Portfolios </a> </p>
<p>Discuss about the contents of your portfolio </p>
</body>
</html>