<p>Hello</p>
output:
Hello
<h1>this is h1</h1>
<h2>this is h2</h2>
<h3>this is h3</h3>
<h4>this is h4</h4>
<h5>this is h5</h5>
<h6>this is h6</h6>
output:
<p>Hello</p>
<br>
<p>Bye</p>
output:
Hello
Bye
<p>Hello</p>
<hr>
<p>Bye</p>
output:
Hello
<img src="https://example/goku.jpg" alt="goku" width="400px">
output:
<video src="https://media.vlipsy.com/vlips/LmebGdds/360p.mp4" controls loop autoplay> </video>
output:
<a href="https://google.com">Google</a>
output:
Google
<audio src="music.mp3" controls></audio>
output:
<p>this is normal text</p>
<p>this is <b>bold</b> text </p>
<p>this is <i>italic</i> text</p>
<p>this is <big>big</big> text</p>
<p>this is <small>small</small> text</p>
<p>this is <sub>subscript</sub> text</p>
<p>this is <sup>superscript</sup> text</p>
<p>this is <del>deleted</del> text</p>
<p>this is <mark>marked</mark> text</p>
Output:
this is normal text
this is bold text
this is italic text
this is big text
this is small text
this is subscript text
this is superscript text
this is deleted text
this is marked text
<p style="color: red;"">This is color red</p>
<p style="color: Blue;"">This is color Blue</p>
Output:
This is color red
This is color blue
<p style="background-color: red;"">This is color red</p>
<p style="backgorund-color: Blue;"">This is color Blue</p>
Output:
This is color red
This is color Blue
<ul>
<li>Water</li>
<li>Coffee</li>
<li>Pizza</li>
</ul>
Output:
<ol>
<li>Water</li>
<li>Coffee</li>
<li>Pizza</li>
</ol>
Output:
type= "A" this will make the type capital alphabet
type= "a" this will make the type alphabet
type= "I" this will make the type capital Roman numerals
type= "i" this will make the type Roman numerals
type= "1" this will make the type Numbers
<dl>
<!-- This is Water -->
<dt>Water</dt>
<dd>Cold</dd>
<dd>Warm</dd>
<dd>mid</dd>
<!-- This is Coffee -->
<dt>Coffee</dt>
<dd>Esspresso</dd>
<dd>Latte</dd>
<dd>Mocha</dd>
<!-- This is Pizza -->
<dt>Pizza</dt>
<dd>Margherita</dd>
<dd>pepporoni</dd>
<dd>Cheese</dd>
</dl>
Output:
<table>
<tr bgcolor="blue">
<th>Sunday</th>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
<th>Saturday</th>
</tr>
<tr bgcolor="red">
<th>Close</th>
<th>Open</th>
<th>Open</th>
<th>Open</th>
<th>Open</th>
<th>Open</th>
<th>Close</th>
</tr>
</table>
Output:
Sunday | Monday | Tuesday | Wednesday | Thursday | Friday | Saturday |
---|---|---|---|---|---|---|
Close | Open | Open | Open | Open | Open | Close |
<div style="color:rgb(255, 38, 0);">
<p>paragraph one</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptas placeat adipisci maiores rem inv
entore asperiores harum provident eveniet! Incidunt, repudiandae.
Earum, iure expedita. Assumenda repudiandae quasi, consequuntur nesciunt suscipit.</p>
</div>
<div style="color: blueviolet;">
<p>paragraph two</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptas placeat adipisci maiores rem inv
entore asperiores harum provident eveniet! Incidunt, repudiandae.
Earum, iure expedita. Assumenda repudiandae quasi, consequuntur nesciunt suscipit</p>
</div>
<div style="color: rgb(6, 189, 0);">
<p>paragraph three</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptas placeat adipisci maiores rem inv
entore asperiores harum provident eveniet! Incidunt, repudiandae.
Earum, iure expedita. Assumenda repudiandae quasi, consequuntur nesciunt suscipit</p>
</div>
Output:
paragraph one
Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptas placeat adipisci maiores rem inv entore asperiores harum provident eveniet! Incidunt, repudiandae. Earum, iure expedita. Assumenda repudiandae quasi, consequuntur nesciunt suscipit
paragraph two
Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptas placeat adipisci maiores rem inv entore asperiores harum provident eveniet! Incidunt, repudiandae. Earum, iure expedita. Assumenda repudiandae quasi, consequuntur nesciunt suscipit ex.
paragraph there
Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptas placeat adipisci maiores rem inv entore asperiores harum provident eveniet! Incidunt, repudiandae. Earum, iure expedita. Assumenda repudiandae quasi, consequuntur nesciunt suscipit ex.
here we used the
<div style="color:rgb(255, 38, 0);">
<p>paragraph one</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. <span style="color: darkorchid;"> Voluptas placeat adipisci maiores rem inv
entore asperiores harum provident eveniet!</spam> Incidunt, repudiandae.
Earum, iure expedita. Assumenda repudiandae quasi, consequuntur nesciunt suscipit.</p>
</div>
Output:
paragraph one
Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptas placeat adipisci maiores rem inv entore asperiores harum provident eveniet! Incidunt, repudiandae. Earum, iure expedita. Assumenda repudiandae quasi, consequuntur nesciunt suscipit
as you see we set the style color to darkorchid
<!-- Character Encoding -->
<meta charset="UTF-8">
<!-- Viewport Settings (Responsive Design) -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Description for SEO -->
<meta name="description" content="This is a description of my website.">
<!-- Author Info -->
<meta name="author" content="Your Name">
<!-- Refresh or Redirect Page -->
<meta http-equiv="refresh" content="5; url=https://example.com">
<!-- Embedding a Website -->
<iframe src="https://www.example.com" width="600" height="400"></iframe>
Output
<!-- Embedding a YouTube Video -->
<iframe width="560" height="315"
src="https://www.youtube.com/embed/dQw4w9WgXcQ"
frameborder="0" allowfullscreen></iframe>
Output
<!-- Embedding a PDF File -->
<iframe src="document.pdf" width="600" height="500"></iframe>
Output
<!-- Basic Button -->
<button>Click Me</button>
Output:
<!-- Submit Button in a Form -->
<form>
<input type="text" placeholder="Enter your name">
<button type="submit">Submit</button>
</form>
Output:
<!-- Reset Button in a Form -->
<form>
<input type="text" placeholder="Enter your name">
<button type="reset">Reset</button>
</form>
Output:
<!-- Disabled Button -->
<button disabled>Disabled Button</button>
Output:
<!-- Basic Form -->
<form>
<label>Name:</label>
<input type="text" name="name" placeholder="Enter your name">
<button type="submit">Submit</button>
</form>
Output:
<!-- Login Form -->
<form>
<label>Username:</label>
<input type="text" name="username" placeholder="Enter username">
<br>
<label>Password:</label>
<input type="password" name="password" placeholder="Enter password">
<br>
<button type="submit">Login</button>
</form>
Output:
<!-- Radio Buttons -->
<form>
<p>Choose your gender:</p>
<input type="radio" name="gender" value="male"> Male
<input type="radio" name="gender" value="female"> Female
<input type="radio" name="gender" value="other"> Other
</form>
Output:
<!-- Checkbox -->
<form>
<p>Select your interests:</p>
<input type="checkbox" name="interest" value="music"> Music
<input type="checkbox" name="interest" value="sports"> Sports
<input type="checkbox" name="interest" value="reading"> Reading
</form>
Output:
<!-- Select Dropdown -->
<form>
<label>Choose a country:</label>
<select name="country">
<option value="usa">USA</option>
<option value="uk">UK</option>
<option value="canada">Canada</option>
</select>
</form>
Output:
<!-- Textarea (Multi-line Input) -->
<form>
<label>Your Message:</label>
<textarea name="message" rows="4" cols="30" placeholder="Type your message..."></textarea>
</form>
Output:
<!-- Disabled Input Field -->
<form>
<label>Read-only Field:</label>
<input type="text" value="This cannot be edited" disabled>
</form>
Output:
Trying My Best in cybersecurity, tutorials, and more!