HTML5 Semantics Elements Fresco Play Hands-On Solutions
Course Path: Modern Web Development/WEB BASICS/HTML5 Semantic Elements
1.Html5-header(15 Min)
File Name: index.html
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="favicon.png" type="image/png">
<title>Destiny</title>
<link href="mystyle.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<a><h1>WELCOME TO MY PAGE<h1></a>
</header>
</body>
</html>
- List of Fresco Play Courses without Hands-On | Fresco Play
- HMTL5 Semantics Elements MCQs Answers | Fresco Play
- HMTL5 Semantics Elements Hands-On Solutions | Fresco Play
- Styling with CSS3 Hands-On Solutions | Fresco Play
- Blockchain Intermedio MCQs Answers | Fresco Play
- Blockchain - Potentes Nexus MCQs Answers | Fresco Play
- Azure Essentials MCQs Answers | Fresco Play
- AWS Essentials MCQs Answers | Fresco Play
2.HTML5 Navigation(20 Min)
File Name: index.html
<!DOCTYPE html>
<html>
<head>
<link href="mystyle.css" rel="stylesheet" type="text/css">
</head>
<body>
<nav>
<a>HOME</a> |
<a>Blog</a> |
<a>Videos</a> |
<a>About Me</a>
</nav>
</body>
</html>
3.Html5-footer(15 Min)
File Name: index.html
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="favicon.png" type="image/png">
<title>Destiny</title>
<link href="mystyle.css" rel="stylesheet" type="text/css">
</head>
<body>
<footer>
<p>Copyright @ NOTES BEREAU</p>
</footer>
</body>
</html>
4.HTML 5 Registration(25 Min)
File Name: index.html
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="favicon.png" type="image/png">
<title>Destiny</title>
<link href="mystyle.css" rel="stylesheet" type="text/css">
</head>
<body>
//write your code here
<h1>Registration Form</h1>
<form>
Name: <input type="text">
Date of Birth: <input type="date">
country: <input list="country">
<datalist id="country">
<option value="India">
<option value="United States">
<option value="United Kingdom">
<option value="Australia">
<option value="France">
</datalist>
Phone number: <input type="tel">
Email: <input type="email">
website: <input type="url">
</form>
</body>
</html>
5.Html5-Audio(20 Min) | html5-music player
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="favicon.png" type="image/png">
<title>Destiny</title>
<link href="mystyle.css" rel="stylesheet" type="text/css">
</head>
<body>
// write your code
<audio controls>
<source src="SampleAudio.mp3" type="audio/mpeg">
</audio>
<audio controls preload="none">
<source src="SampleAudio.mp3" type="audio/mpeg">
</audio>
<audio controls loop>
<source src="SampleAudio.mp3" type="audio/mpeg">
</audio>
</body>
</html>
6.HTML5-Video Player(25 Min)
File Name: index.html
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="favicon.png" type="image/png">
<title>Destiny</title>
<link href="mystyle.css" rel="stylesheet" type="text/css">
</head>
<body>
//write your code here
<video controls autoplay>
<source src="video.mp4" type="video/mp4">
</video>
<video controls preload="none">
<source src="video.mp4" type="video/mp4">
</video>
<video controls poster="https://cdn12.picryl.com/photo/2016/12/31/lego-stones-plastic-education-8b9a7d-1024.jpg">
<source src="video.mp4" type="video/mp4">
</video>
</body>
</html>
7.HTML5 Canvas(25 Min)
File Name: index.html
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="favicon.png" type="image/png">
<title>Destiny</title>
<link href="mystyle.css" rel="stylesheet" type="text/css">
</head>
<body>
<canvas id="GFG"
width="600"
height="400">
</canvas>
<script>
var x =
document.getElementById("GFG");
var ctx = x.getContext("2d");
ctx.strokeRect(20, 20, 200, 100);
ctx.stroke();
</script>
</body>
</html>
- List of Fresco Play Courses without Hands-On | Fresco Play
- HMTL5 Semantics Elements MCQs Answers | Fresco Play
- HMTL5 Semantics Elements Hands-On Solutions | Fresco Play
- Styling with CSS3 Hands-On Solutions | Fresco Play
- Blockchain Intermedio MCQs Answers | Fresco Play
- Blockchain - Potentes Nexus MCQs Answers | Fresco Play
- Azure Essentials MCQs Answers | Fresco Play
- AWS Essentials MCQs Answers | Fresco Play
In html5 audio what things do we need to install before running the program?
ReplyDeleteJust click on above Run tab and install, run after that Run Tests
DeleteIn audio HTML5 what are the package do we need to install before running the program?
ReplyDeleteThere's one npm error I'm getting while executing the audio code... How to rectify that in hacker rank?
ReplyDeleteHTML 5 Registratio is not cleared I have tried many times
ReplyDeleteHTML 5 Registration is not cleared tried many times
ReplyDeleteWhat error you are getting can you please specify.
DeleteNavigation code is not executing
ReplyDeletecan you please specify the error.
DeleteHtml semantic elements Audio and video hands on not working for me
ReplyDeleteWhat error you are getting can you please specify.
DeleteRegistration form is cleared
ReplyDeleteOhhh Nice. If you any further help fill free to ask.
Deletewhat you updated in this code please tell me I'm not able to clear this question with this code.
DeleteWhat error you are getting can you please specify. Also you can mail Screenshot of error to notesbureau2021@gmail.com
DeletePost a Comment
Any comments and suggestion will be appreciated.