mirror of
https://github.com/atapas/html-tips-tricks.git
synced 2024-11-16 08:48:26 +01:00
24 lines
812 B
HTML
24 lines
812 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<meta charset='utf-8'>
|
||
|
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
||
|
<title>HTML Tips and Tricks - Meter</title>
|
||
|
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
||
|
<link href="https://fonts.googleapis.com/css2?family=Chilanka&display=swap" rel="stylesheet">
|
||
|
<link rel='stylesheet' type='text/css' media='screen' href='../main.css'>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div class="demo">
|
||
|
<a href="../index.html" class="home">
|
||
|
<img src="../home.svg" alt="home" />
|
||
|
</a>
|
||
|
<h1>Iframe Tag</h1>
|
||
|
<iframe src="https://www.youtube.com/embed/tgbNymZ7vqY"
|
||
|
width="560" height="315" boder="1" frameborder="0" allowfullscreen></iframe>
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|