«««< HEAD
Form controls live inside <form>
element.
1-action Every <form> element requires an action attribute. Its value is the URL for the page on the server that will receive the information in the form when it is submitted.
2-method Forms can be sent using one of two methods: get or post
<form action="http://www.example.com/subscribe.php"
method="get">
<p>This is where the form controls will appear.
</p>
</form>
name
When users enter information
into a form, the server needs to
know which form control each
piece of data was entered into.
<input>
1- type="text"
creates a singleline
text input.
2-type="password"
3-type="radio"
value The value attribute indicates the value that is sent to the server
checked The checked attribute can be used to indicate which value (if any) should be selected when the page loads.
4-type="checkbox"
value The value attribute indicates the value sent to the server if this checkbox is checked.
checked The checked attribute indicates that this box should be checked when the page loads.
5-type="file"
This type of input creates a
box that looks like a text input
followed by a browse button.
When the user clicks on the
browse button, a window opens
up that allows them to select a
file from their computer to be
uploaded to the website.
6-type="submit"
value
The value attribute is used to
control the text that appears
on a button.
7-type="image"
8-type="date"
9-type="email"
10-type="search"
<textarea>
The <textarea>
element
is used to create a mutli-line
text input.
<select>
<option>
The <option>
element is used
to specify the options that the
user can select from.
newley introduced
<label>
for
The for attribute states which
form control the label belongs to
<fieldset>
You can group related form
controls together inside the
<fieldset>
element
<legend>
The <legend>
element can
come directly after the opening
<fieldset>
tag and contains a
caption which helps identify the
purpose of that group of form
controls.
1-list-style-type
Unordered Lists
For an unordered list you can use the following values:
none
disc
circle
square
Ordered Lists
For an ordered (numbered) list you can use the following values:
decimal
1 2 3
decimal-leading-zero
01 02 03
lower-alpha
a b c
upper-alpha
A B C
lower-roman
i. ii. iii.
upper-roman
I II III
list-style-image
ul {
list-style-image: url("images/star.png");
}
list-style-position
outside
The marker sits to the left of the
block of text.
inside
The marker sits inside the box of
text (which is indented).
width
to set the width of the table
padding
to set the space
between the border of each table
cell and its content
text-transform
to convert the
content of the table headers to
uppercase
letter-spacing
,
font-size
to add additional styling to the
content of the table headers
border-top
, border-bottom
to set borders above and below
the table headers
empty-cells
show
This shows the borders of any
empty cells.
hide
This hides the borders of any
empty cells.
inherit
If you have one table nested
inside another, the inherit
value instructs the table cells to
obey the rules of the containing
table.
1-Styling Text Inputs: font-size sets the size of the text entered by the user.
2-color sets the text color
3- background-color sets the background color of the input.
4- border adds a border around the edge of the input box
5- border-radius can be used to create rounded corners
Styling Submit Buttons 1-color is used to change the color of the text on the button.
2-text-shadow can give a 3D look to the text in browsers that support this property.
3- border-bottom has been used to make the bottom border of the button slightly thicker, which gives it a more 3D feel.
Styling Fieldsets & Legends
width is used to control the width of the fieldset.
color is used to control the color of text.
background-color is used to change the color behind these items.
border is used to control the appearance of the border around the fieldset and/or legend.
When you browse the web, your browser registers different types of events.
THREE WAYS TO BIND ANEVENT TO AN ELEMENT
There are three types of event handlers:
1-HTML EVENT HANDLERS.
2-TRADITIONAL DOM EVENT HANDLERS:
they let you separate the JavaScript from the HTML. The main drawback is that you can only attach a single function to any event.
3-Event listeners event listeners allow one event to trigger multiple functions. As a result, there are less likely to be conflicts between different scripts that run on the same page
Because you cannot have parentheses after the function names in event handlers or listeners, passing arguments requires a workaround
if you need to pass arguments to a function that is called by an event handler or listener, you wrap the function call in an anonymous function
1- CLICK : You may also be tempted to use the c 1 i ck event to run a script when a user clicks on a form element, but it is better to use the focus event because that fires when the user accesses that control using the tab key
The three events that begin key in this order:
keydown - user presses key down
keypress - user has pressed or is holding a keY that adds a character into the page
keyup - user releases key
1-FOCUS AND BLUR 2-VALIDATION (Checking form values)
Whenever elements are added to or removed from the DOM, its structure changes. This change triggers a mutation event PROBLEMS WITH MUTATION EVENTS If your script makes a lot of changes to a page, you end up with a lot of mutation events firing. This can make a page fee l slow or unresponsive
NEW MUTATION OBSERVERS Mutation observers are designed to wait until a script has finished its task before reacting, then report the changes as a batch =======
CSS treats each HTML element as if it is in its own box. This box will either be a block-level box or an inline box.
Block-level boxes start on a new line and act as the main building blocks of any layout, while inline boxes flow between surrounding text
Block-level elements start on a new line Examples include:
<h1> <p> <ul> <li> <div>
Inline elements flow in between
surrounding text Examples include:
<img> <b> <i>
position:static
you dont need to write it its the defult
This does not affect the position of surrounding elements; they stay in the position they would be in in normal flow.
Relative positioning moves an element in relation to where it would have been in normal flow.
position:relative
Absolutely positioned elements move as users scroll up and down the page. (They act like it is not there.)
box offset: properites to control the postitoning of an elemnt used in absoluete postitoning.
position:absolute
The box offset properties (top or bottom and left or right) specify where the element should appear in relation to its containing element.
h1 {
position: absolute;
top: 0px;
left: 500px;
width: 250px;}
p {
width: 450px;}
types :
To control where the fixed position box appears in relation to the browser window, the box offset properties are used.
Overlapping Elements :
If you want to control which element sits on top, you can use the z-index
property. Its value is a number
, and the higher the number the closer that element is to the front.
When you use the float
property, you should also use the width
property to indicate how wide the floated element should be. If you do not, results can be inconsistent but the box is likely to take up the full width of the containing element .
**use flow to style elemnts next to each other:
to say that no element (within the same containing element) should touch the left or righthand sides of a box.
it takes 4 values :
left(elemnts should not touch the left side),right(elemnts should not touch the right side),both(no touch for left and right),none(elemnts can touch).
clear=left;
issue: If a containing element only contains floated elements, some browsers will treat it as if it is zero pixels tall.
solution: by adding an extra element after the last floated box (inside the containing element
recent solution
● The overflow property is given a value auto.
● The width property is set to 100%.
you can create multi column in the website using float
A Fixed Width Layout the width of the main boxes on a page will usually be specified in pixels.
A Liquid Layout layout uses percentages to specify the width of each box so that the design will stretch to fit the size of the screen.
This is where the min-width
and max-width
properties help create boundaries within which the layout can stretch.
## CSS Frameworks : providing the code for common tasks, such as creating layout grids, styling forms.
1- @import : HTML page can link to one style sheet and that stylesheet can use the @import rule to import other style sheets.
@import url("tables.css");
2-link : Inside the <head>
element is a separate <link>
element for each style sheet
c423561ed1e34b21adda60be5f46bbbd8e405ec5