You are on page 1of 4

Html

Attributs for a html lists


Unordered lists
We can also use different CSS properties to create a list with different styles. It can have one
of the following values :

circle: It gives a circle list item marker.

square: It gives square as list item marker.

disc: This is the default filled circular bullet item marker.

none: This is used to unmark list items.

Ordered lists
attribut type help us , since we are talking about an ordered list so we have to use some
numeric list or alphabetic list , so we use the :

type = “1”: List will start from 1.

type = “A”: Here the list will start from A.

type = “a”: Here the list will start from lowercase a.

type = “I”: The list will start from Roman numbers.

type = “i”: TheList will start form lowercase Roman numbers

Atributs for links


By default, the linked page will be displayed in the current browser window. To change this,
you must specify another target for the link.

The  target  attribute specifies where to open the linked document.

The  target  attribute can have one of the following values:

_self  - Default. Opens the document in the same window/tab as it was clicked

_blank  - Opens the document in a new window or tab

_parent  - Opens the document in the parent frame

Html 1
_top  - Opens the document in the full body of the window

Image and video


there are many attributs we can use for Img tag but the most used and i portant one are
known and i don’t have to talk about them , if you are curious better , go sleep , because if
you keep forgeting , are you sure you are studying , OK , I may be harsh but I am sitting the
facts bb.
There other attributs such as style but I think you wouldn’t need them because you are gonna
learn Css and if you so that , then we don’t need to know more about the style attribut .

Video
let’s talk about it , sometimes we use iframes , instead of the tag video …

so here there are many attributs , we can use , such as :

autoplay , that means the video will start playing as soon as it is ready.

controls that means that the video controls should be displayed.

height and with they re known

loop if the video ends it will automatically start over

muted the audio should be muted

poster , this one is strange , specifies an image to be shown while the video is
downloading , or until the user hits the play button .

preload is unique , preload=”auto , metadata , none”, specifies if and how the author
thinks the video should be loaded when the page loads

Input types
this is been copied from w3schools :

<input type="button">

<input type="checkbox">

<input type="color">

<input type="date">

<input type="datetime-local">

Html 2
<input type="email">

<input type="file">

<input type="hidden">

<input type="image">

<input type="month">

<input type="number">

<input type="password">

<input type="radio">

<input type="range">

<input type="reset">

<input type="search">

<input type="submit">

<input type="tel">

<input type="text"> (default value)

<input type="time">

<input type="url">

<input type="week">

<blockquote></blockquotes>

Frame Attributs
marginheight

marginwidth

scrollbar

framespacing

frameborder

longdsec Url It specifies a page which contains the long description of the content of
the frame.

Html 3
we should know that there’s a tag called <noframes> used for browser that dont’t support the
frame tags :and we use to display a text if the browser used by the user is not compatible with
the frames.

<noframes></noframes>

Html 4

You might also like