Friday, March 5, 2021

 Exercise 3 Grade equivalent


<!DOCTYPE html>

<html>

<head>

<title>Title of the Document</title>

</head>

<style>

body {background-color:maroon;} // styles applied to body tag

</style>


Enter your Full Name <input type="text" placeholder="Type " id="name" Value=" "><br>

Enter your score <input type="text" placeholder="Type " id="score" Value=" "><br>

Enter total numbers of item <input type="text" placeholder="Type " id="total" Value=" ">


<button type="button" onclick="getCompute();">Compute</button>


<script>


function getCompute() {

var name = document.getElementById("name").value;


var score = Number(document.getElementById("score").value);


var total = Number(document.getElementById("total").value);


grade = (score/total);


grade2 = (grade*100) ;



// Displaying the value 


alert("name: " + name +" \n\nscore: " + score +"\n\ntotal " + total + "\n Equivalent grade" +grade2 );

document.write("Name: " + name + "<br> <br> Score: " + score + "<br> <br> Total: " + total + "<br> <br> Equivalent Grade: " + grade2);

}


</script>

</body>

</html>


Tuesday, March 2, 2021

Exercise 2 RESUME 












<!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>
<li> adrian.guisihan@Rmail.com 2222 Mill Plain Rd, Fairfield, CT 06614 / Cell 203-555-1111
<h2> My Profile </h2>
<li>High School senior skilled in athletics and working with children in sports-related activities. Dependable and mature; seeking admission to a college where I can study Sports Medicine.
<li>Show your passion. Don't be afraid to get personal, especially in your bio. After all, they've expressed an interest in you as a Person. If you have any special. talents or strongly held beliefs, jot those down.
<hr>
<h2> My Education </h2>
<ol>
<li> salawag elementary school
<li> bacoor national high school
<li> st.jude college
<li> university of perpetual help
</ol>
<hr>
<h2> Honors and Awards </h2>
<ul>
<li> High School Honor Roll (2006•Present)
<li> High School Coaches Association Award (2008)
<li> Varsity Indoor Track (2008- 2009)
<li> Varsity Lacrosse (2007-2009)
<li> All Conference Lacrosse (2008)
<li> All Conference Academic (all sports 2006•Present)
</ul>
<hr>
<h2> Skills </h2>
<ul>
<li> adobe photoshop
<li> adobe illustrator
<li> adobe premier pro
<li> adobe animate
<li> blender
<li> java
</ul>
<hr>

<h1> Links to your portfolio </h1>
<p> <a href="https://www.facebook.com/adrian.guisihan.3"> Facebook </a> </p>
<p> <a href="https://www.youtube.com/channel/UC5ldvw522w9QWRgNZgdd2Ww"> YouTube </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>

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>