Skip to main content

Personal Info

 


<!DOCTYPE hmtl>

<html>

 <body>

  <title>Form Element and Attributes</title>

<style> //format and styles

div{

margin-bottom:10px;

}

label{ 

display:inline-block;

width:120px;

}

legend{

padding:20px0;

font-size:20px;

}

</style>

</head>

<body>

<form action="/form/submit" method="GET or POST" >

<fieldset>

<legend>Personal Information:</legend>

<label for="fname">Name</label>

<input type="text" placeholder="Enter Name" name="Name" id="fname"/><br/><br/>

<label for="number">Phone</label>

<input type="number" placeholder="Enter Number" name="Phone" id="number"/><br/><br/>

<label for="email">Email</label>

<input type="email" placeholder="Enter Email" name="email" required> 

<br/><br/>

Activity : Describe the result of each Code

<label for="course">Course </label>     

<select  name="list" id="list" width=10px  >

<option value="MMA">MMA</option>

<option value="BSPSY">BSPSYL</option>

<option value="BEED">BEED</option>

<option value="BSED">BSED</option>

<option value="js">JavaScript</option>

</select><br><br>

<textarea name="Comment" rows="3" cols="30" placeholder="Type some text here"></textarea><br/>

<input type="submit" value="Submit"/>

</fieldset>

<fieldset>

<legend>Gender:</legend>

<input type="radio"placeholder="Male"name="Gender" required>Male<br/><br/>

<input type="radio"placeholder="Female"nmae="Gender"required>Female<br/><br/>

</fieldset>

<fieldset>

<legend>Talent/skills:</legend>

<input type="checkbox"placeholder="Photography"name="Talents"required>Photography<br/><br/>

<input type="checkbox"placeholder="Videography"name="Skills"required>Videography<br/><br/>

</fieldset>

</form>

</body>

</html>

Comments

Popular posts from this blog

Exercise 10: Animation (Finals Web Prog)

(Code for HTML:) <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Exercise 010 Animated Web page</title> <link rel="stylesheet" href="Exercise10AnimatedWebpage.css"> </head> <body> <div> <h1 style="font-size:40px;"> ABOUT MYSELF  </h1> </div> <br> <br> <br> <br> <br> <br> <br> <br>  <p style="text-align: justify; text-indent: 50px;">  Hi I'm Jillian Marren Dela Cruz. You can call me "Jill or Jillian" i'm currently 3rd year Multimedia Arts Student. 20 years of Age. I chose multimeida because i want to enchance my skills and i'm willing to learn about everything. I'm November Babies and My zodiac sign is Sagittarius. The Sagittarius Traits is Curious and energetic, Sagittarius is one of the biggest travelers among all...

Exercise 12: Chat Box (Finals Interactive)

  (CODE FOR HTML:) <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title> Chat Box </title> <link rel="stylesheet" href="Exercise12Chatbox.css"> </head> <body> <section> <button class="chat-btn"> <b> CHAT </b> </button> <div id="chat-container" onclick="changeColor()" class="chat-popup"> <div class="chat-area"> <div class="income-msg"> <span class="msg"> Rj: Hi! I Hope you doing well. Keep safe. See you soon </span> </div> </div> <div class="input-area"> <input id="name-input" type="name" size="12" style="margin-right:8px;" placeholder="Type your name"> <input id="message-input" ...

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")   {