<!-- Online HTML, CSS and JavaScript editor to run code online. --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" href="style.css" /> <title>Browser</title> </head> <body> <h1> hammad iqbal </h1> <p> Paragraphs are the building blocks of papers.<br> Many students define paragraphs in terms of length: a paragraph is a group of at least five sentences, a paragraph is half a page long, etc. In reality, though, the unity and coherence of ideas among sentences is what constitutes a paragraph. A paragraph is defined as<b> “a group of sentences or a single sentence that forms a unit”</b> <i>(Lunsford and Connors 116).</i> <br></br>Length and appearance do not determine whether a section in a paper is a paragraph. For instance, in some styles of writing, particularly journalistic styles, a paragraph can be just one sentence long. Ultimately, a paragraph is a sentence or group of sentences that support one main idea. In this handout, we will refer to this as the “controlling idea,” because it controls what happens in the rest of the paragraph </p> <img src="all.png"alt="error load"with="400"heigth="200" <script src="script.js"></script> <ul type="square"> <li>This handout will help you understand how paragraphs are formed, how to develop stronger paragraphs, and how to completely and clearly express your ideas.</li> <li>This handout will help you understand how paragraphs are formed, how to develop stronger paragraphs, and how to completely and clearly express your ideas.</li> <li>his handout will help you understand how paragraphs are formed, how to develop stronger paragraphs, and how to completely and clearly express your ideas</li> <ol type="A"> <li>his handout will help you understand how paragraphs are formed, how to develop stronger paragraphs, and how to completely and clearly express your ideas</li> <li>his handout will help you understand how paragraphs are formed, how to develop stronger paragraphs, and how to completely and clearly express your ideas</li> <li>his handout will help you understand how paragraphs are formed, how to develop stronger paragraphs, and how to completely and clearly express your ideas</li> <table><hr> <thead> <tr> name</tr> <tr>father name</tr> <tr> class</tr> <tbody> <tr> <td>ali</td> <td>muhammad</td> <td>ICS(phy)</td> </tr> <tr> <td>hammad</td> <td>asif</td> <td>FA.IT</td> </tr> <tr><hr <td>hamza</td> <td>muhammadiqbal</td> <td>I.COM</td> </tr> </table> <hr> <form action=" styles.CSS" method="get" accept-charset="utf-8"> name: <input type="name" name="" id="" value="" /><br></br> <br> EMAIL: <input type="email" name="my email" id="my email" value="" > <br> <br> <br> submit: <input type="submit" name="gutton" id="subit" value="click now" /> </form> </html>
Write, Run & Share HTML code online using OneCompiler's HTML online Code editor for free. It's one of the robust, feature-rich online Code editor for HTML language, running on the latest version HTML5. Getting started with the OneCompiler's HTML compiler is simple and pretty fast. The editor shows sample boilerplate code when you choose language as HTML
. You can also specify the stylesheet information in styles.css
tab and scripts information in scripts.js
tab and start coding.
HTML(Hyper Text Markup language) is the standard markup language for Web pages, was created by Berners-Lee in the year 1991. Almost every web page over internet might be using HTML.
<!DOCTYPE html>
<html>
and ends with </html>
<h1>
to <h6>
where <h1>
is the highest important heading and <h6>
is the least important sub-heading.<p>..</p>
tag.<a>
tag.
<a href="https://onecompiler.com/html">HTML online compiler</a>
<img>
tag, where src
attribute consists of image name.<button>..</button>
tag<ul>
for unordered/bullet list and <ol>
for ordered/number list, and the list items are defined in <li>
.<a href="https://onecompiler.com/html">HTML online compiler</a>
CSS(cascading style sheets) describes how HTML elements will look on the web page like color, font-style, font-size, background color etc.
Below is a sample style sheet which displays heading in green and in Candara font with padding space of 25px.
body{
padding: 25px;
}
.title {
color: #228B22;
font-family: Candara;
}
<table>
tag.<tr>
tag<th>
tag<td>
tag<caption>
tag<script>
is the tag used to write scripts in HTML<script src="script.js"></script>