Sunteți pe pagina 1din 3

Pop Emilia-Loredana

PROGRAMARE WEB
https://www.cs.ubbcluj.ro/~bufny/programare-web/laborator-%20html/

HTML
HTML 4 HTML 5
<b> … </b> - permite scrierea textului Bold-at <strong> … </strong> - permite evidențierea textului
- <!DOCTYPE html> - începe un document HTML 5
<i> ... </i> - text italic <em> ... </em> - text inclinat

In Sublime Text 3 – choose from Plain text, the HTML type and write in the document HTML and
press TAB and we get all the syntax:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>

</body>
</html>

<!DOCTYPE html>
<html>
<head>
<title> MY FIRST WEBSITE </title>
</head>
<body>
Heloo there!!!
<h1> Programare Web </h1>
<h2> Programare Web </h2>
<h3> Programare Web </h3>
<h4> Programare Web </h4>
<h5> Programare Web </h5>
<h6> Programare Web </h6>

<p> Un site frumos de unde se poate invata HMTL este https://www.w3schools.com/tags/.


Acolo se gasesc informatii utile legate de crearea paginilor web. </p>

<p> Un site frumos de unde se poate invata HMTL este https://www.w3schools.com/tags/.


Acolo se gasesc informatii utile legate de crearea paginilor web. </p>
<!-- comentariu -->
<!-- pentru HTML 5 -->
<strong> Astazi este cea mai buna zi sa incepem sa invatam Programare Web. </strong><br>
<em> Astazi scriem prima noastra pagina web.</em> <br>

<!-- echivalent -->


<!-- pentru HTML 4 -->
<b> Astazi este cea mai buna zi sa incepem sa invatam Programare Web. </b><br>
<i> Astazi scriem prima noastra pagina web.</i> <br>
1
Pop Emilia-Loredana

Lista de tag-uri HTML:


<ol> <li> h1, h2, h3, h4, h5, h6 pentru titluri
<li> p paragraf
<li> br trecere la rand nou
<li> strong evidentiere text
<ul> <li> ol liste ordonate
<li> ul liste neordonate
<li> dd liste de definitii </ul>
<li> hr linii orizontale
<li> em scris inclinat </ol>
<hr color= red>
<img src = https://services.meteored.com/img/article/-por-que-el-mar-es-azul--9441-2.jpg
alt="text pentru imagine" weight=500 height=500> <br>
Imaginele pot fi redimensionate la weight=42 si height=42 si devin mici iar atributul
<em><strong>alt</strong></em> folosit la imagine ne da posibilitatea folosirii unui text alternativ
pentru imagine.<br>
<a href = https://www.google.com> Google link </a><br>

<table border=10 bgcolor=green width=33% align=center >


<tr height=66><td bgcolor=lime width=10%>televiziuni nationale</td><td>tvr1</td></tr>
<tr><td>pro tv</td></tr>
<tr><td>antena 1</td></tr>
<tr><td>prima tv</td></tr>
<tr bgcolor=ciel><td>alte televiziuni</td><td>mtv</td></tr>
</table>

</body>
</html>

2
Pop Emilia-Loredana

S-ar putea să vă placă și