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; }
HTML_Basics
HTML_Basics
1. Introduction
HTML (HyperText Markup Language) is the standard language for creating web pages. It defines
the structure of a webpage using elements like headings, paragraphs, images, and links.
An HTML document starts with a <!DOCTYPE html> declaration and contains the following key
elements:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Welcome to My Website</h1>
</body>
</html>
- Paragraphs: <p>
<!DOCTYPE html>
<html>
<head>
<title>Basic Form</title>
</head>
<body>
<h2>Contact Us</h2>
<form>
Message:<br>
</form>
</body>
</html>