hello, this is the first paragraph
link tag is typically used to link external resources like CSS files, icons, and fonts in HTML.
< link rel="stylesheet" href="style.css" type="text/css" media="screen">
< link rel="icon" href="favicon.ico" sizes="32x32" type="image/x-icon">
< link rel="preload" href="app.js" as="script">
Attribute | Description | Example |
---|---|---|
rel |
Specifies the relationship between the current document and the linked resource | <link rel="stylesheet"> |
href |
Specifies the URL of the linked resource | <link href="style.css"> |
type |
Specifies the Multipurpose Internet Mail Extensions (MIME) type of the linked resource | <link type="application/json"> |
media |
Specifies the media/device the linked resource is for | <link media="screen"> |
as |
Used with rel="preload" to specify the type of content being preloaded |
<link rel="preload" as="script"> |
crossorigin |
Indicates how the resource should be fetched across domains | <link crossorigin="anonymous"> |
sizes |
Defines the size of icons when rel="icon" is used |
<link rel="icon" sizes="32x32"> |
title |
Optional title of the resource, sometimes used for alternate stylesheets | <link rel="alternate stylesheet" title="Dark Mode"> |
Attribute | Description | Example |
---|---|---|
href |
Specifies the URL of the page the link goes to | <a href="https://example.com"> |
target |
Specifies where to open the linked document | <a target="_blank"> |
rel |
Specifies the relationship between the current and linked document (used with
target="_blank" for security)
|
<a rel="noopener noreferrer"> |
download |
Indicates that the link is for downloading a file instead of navigating | <a href="file.pdf" download> |
title |
Gives extra information shown as a tooltip when hovering | <a title="Click to visit"> |
type |
Specifies the MIME type of the linked document (used when linking to files) | <a href="file.pdf" type="application/pdf"> |
hreflang |
Specifies the language of the linked document | <a href="fr-page.html" hreflang="fr"> |
The target attribute is most commonly used in the (anchor) tag to define where to open the linked document.
Value | What It Does |
---|---|
_blank |
Opens the link in a new tab or window |
_self |
Opens the link in the same tab (default behavior) |
_parent |
Opens in the parent frame (if using frames/iframes) |
_top |
Opens in the full body of the window, breaking out of all frames |
customName |
Opens in a named tab/window (reuses the same one if already open) |
Lorem ipsum dolor sit, amet elit.
after br tag
Saepe iure ipsa.
underrline italic Big tag emphasize strong wordstrikebold word Marked text This is Smaller text results. Inserted textDeleted textHello cite tag friend cmd + c 3.14 or PIQuoatation tagdifferent fontI am red, not blue.
Emmet is a plugin/tool built into modern code editors (like VS Code, Sublime Text, etc.) that lets you write HTML and CSS super fast using abbreviations and then expand them into full code by pressing Tab.
A snippet is a small piece of reusable code. It's usually a few lines long. You insert it quickly to avoid typing the same thing over and over.
Boilerplate is a standard starting template for a specific type of project or file. It includes all the necessary basic structure. You don't have to start from scratch every time.
Emmet acts like a super-speed shortcut tool. It helps you quickly write:
All by typing short abbreviations and hitting Tab.
To see more Emmet rules go to Emmet.io
this link will take you to google.com
this link will take you to mail
this like will take you to call log
color | size | shape |
---|---|---|
red | 42 | oval |
blue | 40 | round | good |
student id | student name | gender | age |
---|---|---|---|
od | souvik | male | 24 |
pn | parminder | male | 23 |
jk | rima | female | |
up | soumya | female | |
Ram | 1000 |
column 1 | column 2 | column 3 |
row 1 cell 1 | row 1 cell 2 | row 1 cell 3 |
row 2 cell 2 | row 2 cell 3 | |
row 3 cell 1 |
no. | full name | position | salary | type |
---|---|---|---|---|
1 | bill gates | microsoft | 1000k | company founder |
2 | mark zukerberg | 2320k | ||
3 | elon musk | space x | 3460k | |
4 | larry page | 4440k | total expenses: | 11220k |
country | state | city | street | male | female | other |
---|---|---|---|---|---|---|
1 | kerala | cochin | new street | 500 | 600 | 6 |
new street | 500 | 600 | 6 | |||
trivendram | new street | 500 | 600 | 6 | ||
new street | 500 | 600 | 6 | |||
maharastra | mumbai | new street | 500 | 600 | 6 | |
new street | 500 | 600 | 6 | |||
surat | new street | 500 | 600 | 6 | ||
new street | 500 | 600 | 6 | |||
2 | alaska | AKA central | new street | 500 | 600 | 6 |
new street | 500 | 600 | 6 |
Day | Seminar | ||
---|---|---|---|
Schedule | Topic | ||
Begin | End | ||
Monday | 8 | 5 | xml |
dtd | |||
Tuesday | 8 | 11 | x path |
11 | 2 | ||
2 | 5 | xsl | |
Wednesday | 8 | 12 | xslx |
Video without controls attribute
Video with controls attribute
Video with muted attribute
this is an iframe tag with src attribute