html body { margin-top: 50px !important; } #top_form { position: fixed; top:0; left:0; width: 100%; margin:0; z-index: 2100000000; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -o-user-select: none; border-bottom:1px solid #151515; background:#FFC8C8; height:45px; line-height:45px; } #top_form input[name=url] { width: 550px; height: 20px; padding: 5px; font: 13px "Helvetica Neue",Helvetica,Arial,sans-serif; border: 0px none; background: none repeat scroll 0% 0% #FFF; }
Week 2
Week 2
HTML Basics
Presented by
Dr. Muhammad Furqan
Assistant Professor, CUST
Hypertext Markup Language (HTML)
– If you want to link to a specific part of a different page (whether on your own
site or a different website) you can use a similar technique.
Images
There are three rules to remember when you are creating images.
• Each form control is given a name, and the text the user types in or
the values of the options they select are sent to the server.
HTML Forms Structure
<form>
– This element should always carry the action attribute and will usually have a
method and id attribute too.
Action
– Every <form> element requires an action attribute. Its value is the URL for the
page on the server that will receive the information.
Method
– Forms can be sent using one of two methods: get or post.
HTML FORMS