<html>
<head>
<meta http-equiv="refresh" content="10" />
</head>
<body>
<p> Automatically refresh the Html page using meta tag </p>
</body>
</html>
=> The page reload every 10 seconds.
Html Page Redirection using meta tag
After loading for 10 seconds the page will redirect to www.learnpoint.info
Example:
<html>
<head>
<meta http-equiv="Refresh" content="10;URL=http://www.learnpoint.info">
</head>
<body>
<p> Automatically refresh the Html page using meta tag </p>
</body>
</html>
In this tutorial I have explain about the get YouTube thumbnail using AngularJS <html ng-app id="YoutubeApp"> <head> <title> How to get a YouTube video thumbnail dynamically from the YouTube API using AngularJS Tutorials</title> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.6/angular.min.js"></script> <script src="http://code.jquery.com/jquery-1.7.2.min.js"></script> <script> function YoutubeController ($scope) { $scope.todos = []; $scope. addVideo = function() { $scope.todos.push({text:$scope.todoText, done:false}); $scope.todoText = ''; ...
Comments
Post a Comment