Curs Html

Titluri <Hx> ... </Hx>

Exemplu:
<!DOCTYPE html>
<html> 
<head>
<title>Titlu documentului</title>
</head>
<body>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
</body>
</html>

Paragraf <p> ... </p>

Mai jos puteti vedea exemplu:
<!DOCTYPE html>
<html> 
<head>
<title>Titlu documentului</title>
</head>
<body>
<p>Paragraf 1</p>
<p>Paragraf 2</p>
<p>Paragraf 3</p>
<p>Paragraf 4</p>
</body>
</html>

Un nou rand <br>

Mai jos puteti vedea exemplu:
<!DOCTYPE html>
<html> 
<head>
<title>Titlu documentului</title>
</head>
<body>
<h1>Heading 1</h1>
<p>Paragraf 1<br>
Linie 2<br>
Linie 3<br>
... </p>
<p>Paragraf 2</p>
</body>
</html>
- Elementul <br> poate avea atribute, precum: "style", "class".

Linie orizontala <hr>

Mai jos puteti vedea exemplu:
<!DOCTYPE html> 
<html> 
<head>
<title>Titlu documentului</title>
</head>
<body>
<h1>Heading 1</h1>
<p>Paragraf 1<br>
Linie 2<br>
Linie 3<br>
... </p>
<hr>
<hr style="background:#1111fe; height:3px; width:50%;">
<p>Paragraf 2</p>
</body>
</html>

Un Test simplu in fiecare zi

HTML
CSS
JavaScript
PHP-MySQL
Engleza
Spaniola
Ce tag adauga imagine in pagina web?
<div> <img> <span>
<img src="http://coursesweb.net/imgs/webcourses.gif" width="191" height="63" alt="Courses-Web" />
Care din aceste coduri CSS afiseaza textul inclinat?
font-style: italic; text-decoration: underline; font-weight: 500;
#id {
  font-style: italic;
}
Clic pe functia jQuery care ascunde animat un element HTML.
click() hide() show()
$(document).ready(function() {
  $(".a_class").click(function(){ $(this).hide("slow"); });
});
Clic pe functia definita corect in PHP.
fname function() {} function fname() {} function $fname() {};
function fname($a, $b) {
  echo $a * $b;
}
Indicati forma pentru Prezent Perfect Continuu a verbului "to walk" (a merge).
have walked have been walking be walking
I have been walking for 5 hours.
- Merg pe jos de 5 ore.
Indicati Trecutul Nedefinit pentru verbul "ser" (a fi) la forma Yo.
será sería fui
Yo fui entrenador.
- Am fost antrenor.
Titluri, Paragrafe, Un nou rand, Linie orizontala

Last accessed pages

  1. Verbe reflexive 1 (10351)
  2. Instructiuni repetitive for() (2804)
  3. Gramatica limbii spaniole. Indrumator si prezentare generala (64350)
  4. MySQL JOIN, INNER, LEFT, RIGHT (3581)
  5. Ferestre Alert Prompt si Confirm (3064)

Popular pages this month

  1. Cursuri si Tutoriale: Engleza, Spaniola, HTML, CSS, Php-Mysql, JavaScript, Ajax (1237)
  2. Curs HTML gratuit Tutoriale HTML5 (950)
  3. Coduri pt culori (708)
  4. Creare si editare pagini HTML (564)
  5. Conditional IF in Limba Engleza - Fraze Conditionale (516)