Tutorial
HTML - Iframes
Un iframe este utilizat pentru a afișa o pagină web în cadrul unei pagini web.
<iframe src="URL"></iframe>
Atributul src specifică adresa URL (adresa web) a paginii de cadru inline.
Exemplu:
Am utilizat etichetele înălțime și lățime pentru a specifica dimensiunea iframei.
<!DOCTYPE html>
<html>
<head>
<title>Cum se creează HTML - Iframes </title>
</head>
<body>
<iframe src="https://www.agernic.com/ro/"></iframe>
</body>
</html>
Iframe - Eliminare chenar si folosire style CSS
Eliminare chenar pentru iFrame
În mod implicit, un iframe are un chenar în jurul său.
Pentru a elimina chenarul, adăugați eticheta style și utilizați proprietatea de bord CSS:
Sau, puteți utiliza style CSS pentru a seta înălțimea și lățimea iframe:
Exemplu 2:
<!DOCTYPE html>
<html>
<head>
<title>Iframe - Eliminare chenar si folosire style CSS</title>
</head>
<body>
<h1>Folosire style CSS pentru latime si inaltime</h1>
<iframe src="https://www.agernic.com/ro/" style="height:400px;width:600px;"></iframe>
<h2>Eliminare chenar</h2>
<iframe src="https://www.agernic.com/ro/" style="border:none;"></iframe>
</body>
</html>
Online Editor
This tool makes it easy to create, adjust, and experiment with custom colors for the web.
HTML Templates

Magnews2 is a modern and creative free magazine and news website template that will help you kick off your online project in style.
CSS HTML Layout

Find here examples of creative and unique website layouts.
Free CSS HTML Menu

Find here examples of creative and unique website CSS HTML menu.