This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<p>The Pulpit Rock is a massive cliff 604 metres (1982 feet) above Lysefjorden, opposite the Kjerag plateau, in Forsand, Ryfylke, Norway. The top of the cliff is approximately 25 by 25 metres (82 by 82 feet) square and almost flat, and is a famous tourist attraction in Norway.</p> | |
<figure> | |
<img src="img_pulpit.jpg" alt="The Pulpit Rock" width="304" height="228"> | |
<figcaption>Fig.1 - The Pulpit Rock, Norway.</figcaption> | |
</figure> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<form action="demo_form.asp" method="get"> | |
<input list="browsers" name="browser"> | |
<datalist id="browsers"> | |
<option value="Internet Explorer"> | |
<option value="Firefox"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<form action="demo_form.asp" autocomplete="on"> | |
First name:<input type="text" name="fname"><br> | |
Last name: <input type="text" name="lname"><br> | |
E-mail: <input type="email" name="email" autocomplete="off"><br> | |
<input type="submit"> | |
</form> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<form action="demo_form.asp"> | |
First name:<input type="text" name="fname" autofocus><br> | |
Last name: <input type="text" name="lname"><br> | |
<input type="submit"> | |
</form> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<canvas id="myCanvas" width="200" height="100" style="border:1px solid #000000;"> | |
Your browser does not support the HTML5 canvas tag. | |
</canvas> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<canvas id="myCanvas" width="200" height="100" style="border:1px solid #d3d3d3;"> | |
Your browser does not support the HTML5 canvas tag.</canvas> | |
<script> | |
var c=document.getElementById("myCanvas"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<button onclick="playVid()" type="button">Play Video</button> | |
<button onclick="pauseVid()" type="button">Pause Video</button> | |
<br> | |
<video id="video1"> | |
<source src="mov_bbb.mp4" type="video/mp4"> | |
<source src="mov_bbb.ogg" type="video/ogg"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<video id="video1" controls="controls"> | |
<source src="mov_bbb.mp4" type="video/mp4"> | |
<source src="mov_bbb.ogg" type="video/ogg"> | |
Your browser does not support HTML5 video. | |
</video> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<p id="demo">Click the button to get your coordinates:</p> | |
<button onclick="getLocation()">Try It</button> | |
<script> | |
var x=document.getElementById("demo"); | |
function getLocation() | |
{ | |
if (navigator.geolocation) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<style> | |
#div1 {width:350px;height:70px;padding:10px;border:1px solid #aaaaaa;} | |
</style> | |
<script> | |
function allowDrop(ev) | |
{ | |
ev.preventDefault(); |