Initializing
Liveweave
Web
expand_more
home
Home
data_object
CSS Explorer
arrow_outward
Palette
Color Explorer
arrow_outward
Polyline
Graphics Editor
arrow_outward
outbox_alt
Generative AI
arrow_outward
frame_source
Python Playground
New
arrow_outward
build
Tools
expand_more
restart_alt
Load "Hello Weaver!"
post_add
Generate Lorem ipsum...
code
Format HTML
code_blocks
Format CSS
data_object
Format JavaScript
library_add
Library
expand_more
A
Algolia JS
Animate CSS
Apex Charts JS
B
Bulma CSS
Bootstrap
C
Chart JS
Chartist
Create JS
D
D3
Dojo
F
Foundation
Fullpage JS
G
Granim JS
Google Charts
H
Halfmoon
J
jQuery
M
Materialize
Moment JS
Masonry JS
Milligram CSS
P
Pure CSS
Primer CSS
Popper JS
Pattern CSS
Picnic CSS
R
React JS
Raphael JS
Raisin CSS
S
Semantic UI
Skeleton CSS
Spectre CSS
Tachyons CSS
T
Tailwind
Three JS
U
UI Kit
Vis JS
W
Water CSS
download
Download
expand_more
developer_mode
Download as HTML
folder_zip
Download as .ZIP
cloud_upload
Save
account_circle
Login
settings
Settings
expand_more
14
px
Live mode
Night mode
Line number
Mini map
Word wrap
sync_alt
Reset Settings
smart_display
Run
<!DOCTYPE html> <html> <head> <title>Output Tag</title> </head> <body> <header> <h1>HTML5 Form Elements</h1> </header> <article> <h1>Form Elements</h1> <p> These are the important form elements in HTML 5 </p> <section> <h4>Data List</h4> <p> This allows us to add predefined values for an input. These values are used for auto-completion feature. </p> <form oninput='yourdept.value=dept.value'> <label> Enter Your Department: </label> <input type='text' list='dept' name='dept'> <datalist id='dept'> <option value='Civil Engineering'> <option value='Computer Engineering'> <option value='Electrical Engineering'> <option value='Mechanical Engineering'> <option value='Plastic Engineering'> <option value='Polymer Engineering'> </datalist> <br> <h4>Output Tag</h4> <label> You have Entered: </label> <output name='yourdept' for='dept'></output> </form> </section> </article> <footer> Developed by Dr. D. Natarajasivan </footer> </body> </html>
header { text-align:center; height: 100px; background-color: #60dd5a; padding: 10px; border-radius: 10px; } footer { text-align:center; font-size: 12px; height: 50px; line-height: 50px; background-color: #f1dc73; padding: 10px; border-radius: 10px; } article{ width: auto; border: 2px solid gray; padding: 10px; border-radius: 10px; margin:5px; } article>p{ text-align: justify; } section > h4{ text-decoration: underline; font-style: oblique; font-family: cursive; } section > p{ text-indent: 20px; } output{ font-size: 30px; font-style:italic; color:green; }
// Write JavaScript here