Simpatie.ro - matrimoniale
Informatica
Programare - Software - Web Design
Nou pe simpatie:
sayler_moon_19
Femeie
25 ani
Bacau
cauta Barbat
26 - 46 ani
InformaticaInregistrareLoginPozeNu sunteti logat. Lista Forumurilor Pe Tematici
Informatica / Despre limbajele de programare /

Taguri 4

Pagini: 1  
#1
Admin
Administrator
Postari: 315

Fisa 4
1. Lista neordonata (unordered list)

<ul>
<li>Coffee</li>
<li>Milk</li>
</ul>

2. Lista ordonata (ordered list)

<ol>
<li>Coffee</li>
<li>Milk</li>
</ol>

3. Definition list (lista de termeni – ca si descrierea termenilor intr-un dictionar)

<dl>
<dt>Coffee</dt>
<dd>Black hot drink</dd>
<dt>Milk</dt>
<dd>White cold drink</dd>
</dl>

Frame-uri
1. Frame-uri verticale

<html>
<frameset cols="25%,50%,25%">

 <frame src="frame_a.htm">
 <frame src="frame_b.htm">
 <frame src="frame_c.htm">

</frameset>
</html>

2. Frame-uri orizontale\

<html>
<frameset cols="25%,50%,25%">

 <frame src="frame_a.htm">
 <frame src="frame_b.htm">
 <frame src="frame_c.htm">

</frameset>
</html>

3. Frame-uri combinate

<html>
<frameset rows="50%,50%">

<frame src="frame_a.htm">

<frameset cols="25%,75%">
<frame src="frame_b.htm">
<frame src="frame_c.htm">
</frameset>

</frameset>
</html>

4. Realizarea legaturilor dintre frame-uri si pagini html
pagina principala:

<html>

<frameset cols="120,*">
 <frame src="tryhtml_contents.htm" />
 <frame src="frame_a.htm" name="showframe" />
</frameset>
</html>

Tryhtml.htm:

<a href ="frame_a.htm" target ="showframe">Frame a</a><br>
<a href ="frame_b.htm" target ="showframe">Frame b</a><br>
<a href ="frame_c.htm" target ="showframe">Frame c</a>

Unde frame_a.htm, frame_b.htm si frame_c.htm sunt pagini afisate in frame-ul target showframe

Simboluri
Entity names are case sensitive!



Head contine informatii despre pagina
1. This example demonstrates how to use the base tag to let all the links on a page open in a new window.


<html>
<head>
<base target="_blank">
</head>

<body>

<p>
<a href="http://www.w3schools.com"
target="_blank">This link</a>
will load in a new window because the target attribute is set to "_blank".
</p>

<p>
<a href="http://www.w3schools.com">
This link</a>
will also load in a new window even without a target attribute.
</p>

</body>
</html>

2. Informatiile din interiorul elementului meta descriiu pagina

<html>

<head>

<meta name="author"
content="Jan Egil Refsnes">

<meta name="revised"
content="Jan Egil Refsnes,6/10/99">

<meta name="generator"
content="Microsoft FrontPage 4.0">

</head>

<body>
<p>
The meta attributes of this document identify the author and the editor software.
</p>
</body>

</html>

3. Deasemeni tot in meta sunt date cuvintele cheie.(motoarele de cautare cauta in aceste meta tags)

<html>
<head>

<meta name="description"
content="HTML examples">

<meta name="keywords"
content="HTML, DHTML, CSS, XML, XHTML, JavaScript, VBScript">

</head>
<body>
<p>
The meta attributes of this document describe the document and its keywords.
</p>
</body>
</html>

4. Redirectare catre alta pagina

<html>
<head>
<meta http-equiv="Refresh"
content="5;url=http://www.w3schools.com">
</head>

<body>
<p>
Sorry! We have moved! The new URL is: <a href="http://www.w3schools.com">http://www.w3schools.com</a>
</p>

<p>
You will be redirected to the new address in five seconds.
</p>

<p>
If you see this message for more than 5 seconds, please click on the link above!
</p>

</body>
</html>


 
   
Pagini: 1  
Mergi la