Sunday, March 28, 2021

iframe element

 Ovim elementom možemo sadržaj sa druge web stranice da uključimo u našu stranicu.

Primer HTML koda:

<!DOCTYPE html>
<html>
<head>
<title>IFRAME u HTML-u</title>
</head>
<body>

<h2>HTML iframe</h2>
<p>U donjem delu stranice ćemo prikazati sadržaj sa blic.rs sajta:</p>

<iframe src="http:blic.rs" height="200" width="300" title="Iframe Example"></iframe>

</body>
</html>


Prikaz u browseru:



No comments:

Post a Comment

CSS u HTML

CSS je Cascading Style Sheets. Može se dodati na 3 načina u HTML dokument:     Korišćenjem  style  atributa unutar HTML elementa     Korišće...