{"id":10621,"date":"2022-09-24T09:15:16","date_gmt":"2022-09-24T03:45:16","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/"},"modified":"2022-09-24T09:15:16","modified_gmt":"2022-09-24T03:45:16","slug":"solved-need-to-design-a-html-page-with-following-specification-closed","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/","title":{"rendered":"[Solved] Need to design a HTML Page with following specification [closed]"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-29986740\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"29986740\" data-parentid=\"29986200\" data-score=\"-1\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>I kind of agree with the comments above. My answer would be to hire yourself a web developer. You can put an advert on here, or hire someone through services such as elance. The above is a simple job for a frontend developer, but unfortunately these forums are for questions\/answers that form a knowledge base rather then a method to turn requirements into source code.<\/p>\n<p>Having said that, this is how to achieve the above:<\/p>\n<p>1) Any browser is a complex being, and when you say &#8216;opened in any browser&#8217; are you refering to the top 5 most used browsers, or every browser. Every browser would include text &amp; voice browsers, and browsers that run on any machine, including browsers such as the original IE and netscape ones.<\/p>\n<p>This changes your code, as the old browsers will not react to html5 code, where as the common top 5 ones will. if you ask a frontend developer to build you a site, they are likely to build it within html5. <\/p>\n<p>As HTML was around before the first commercial browsers, html is generally well supported, css is a different beast, but you haven&#8217;t asked about that. Javascript tends to be well supported across the browsers, however older browser versions have slight differences in how they response (some different names for functions) and javascript can be disabled in most commonly used browsers. <\/p>\n<p>To get over this latter point, you can use  tags that show a message on screen if no javascript is found.<\/p>\n<p>A hello world html page in html5 would look like this:<\/p>\n<pre><code>&lt;!doctype&gt;\n  &lt;html&gt;\n    &lt;head&gt;&lt;\/head&gt;\n    &lt;body&gt;\n      &lt;h1&gt;Welcome to my HTML5 page&lt;\/h1&gt; \n      &lt;p&gt;This is a 'hello world' example&lt;\/p&gt;\n   &lt;\/body&gt;\n&lt;\/html&gt;\n<\/code><\/pre>\n<p>2) To create a timeout, it&#8217;s very simple, in your script, just write this:<\/p>\n<pre><code>&lt;script type=\"text\/javascript\"&gt;\n    window.setTimeout(function(){alert('I have been triggered');},1000);\n&lt;\/script&gt;\n<\/code><\/pre>\n<p>see this for more details: <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/www.w3schools.com\/jsref\/met_win_settimeout.asp\">http:\/\/www.w3schools.com\/jsref\/met_win_settimeout.asp<\/a><\/p>\n<p>Now the format of setTimeout is easy (a function, timeout time). The timeout time is in ms, so in the example about, it would fire after 1 second. For 10 minutes, it would need to be 600000 (600k ms) and 2 days would be 172800000 (172.8m ms). Please note that a timeout will only fire if the window is left open on your page. <\/p>\n<p>3) To fetch code from another page is simple and there are multiple options:<\/p>\n<p>you can import it using the html5 method:<br \/>\n<a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/www.html5rocks.com\/en\/tutorials\/webcomponents\/imports\/\">http:\/\/www.html5rocks.com\/en\/tutorials\/webcomponents\/imports\/<\/a><\/p>\n<p>to hack this into your function you would do this:<\/p>\n<pre><code>function(){\n   \/\/ assume I have been triggered by the timeout\n   var link = document.createElement('link');\n   link.rel=\"import\"; \n   link.href=\"http:\/\/www.google.com\"\n   link.onload = function(e) {...};\n   link.onerror = function(e) {...};\n   document.head.appendChild(link);\n}\n<\/code><\/pre>\n<p>or you could use jquery (you&#8217;ll need the jquery library to do this): <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jquery.com\/\">https:\/\/jquery.com\/<\/a><\/p>\n<p>You could have some javascript<\/p>\n<pre><code>$(function(){\n      window.setTimeout(function(){\n         $(\"#publishedContent\").load(\"http:\/\/www.google.com\"); \n      },1000);\n    });\n<\/code><\/pre>\n<p>and you would need a matching html element on the page like so:<\/p>\n<pre><code>&lt;div id='publishedContent'&gt;&lt;\/div&gt;\n<\/code><\/pre>\n<p>There are some other ways of doing it as well, but you&#8217;ll need to discuss these with your developer.<\/p>\n<p>4) For custom controls you would be best to look at the various jquery plugins\/themes (<a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/jqueryui.com\/themeroller\/\">http:\/\/jqueryui.com\/themeroller\/<\/a>). If you search for jquery UI themes, or look at Twitter bootstrap (<a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/getbootstrap.com\/getting-started\/#examples\">http:\/\/getbootstrap.com\/getting-started\/#examples<\/a>) you should get inspiration on what is achievable. There are plenty of examples out there: <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/olance.github.io\/jQuery-switchButton\/\">http:\/\/olance.github.io\/jQuery-switchButton\/<\/a><\/p>\n<p>5) To acquire images, the safest bet to ensure that you have the copy-write is use a service such as getty images(<a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/www.gettyimages.co.uk\/\">http:\/\/www.gettyimages.co.uk\/<\/a>) or shutterstock(<a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/www.shutterstock.com\">http:\/\/www.shutterstock.com<\/a>) and buy the images. They are pretty cheap.<\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">10<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved Need to design a HTML Page with following specification [closed] <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] I kind of agree with the comments above. My answer would be to hire yourself a web developer. You can put an advert on here, or hire someone through services such as elance. The above is a simple job for a frontend developer, but unfortunately these forums are for questions\/answers that form a knowledge &#8230; <a title=\"[Solved] Need to design a HTML Page with following specification [closed]\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/\" aria-label=\"More on [Solved] Need to design a HTML Page with following specification [closed]\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[346,333],"class_list":["post-10621","post","type-post","status-publish","format-standard","hentry","category-solved","tag-html","tag-javascript"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] Need to design a HTML Page with following specification [closed] - JassWeb<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] Need to design a HTML Page with following specification [closed] - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] I kind of agree with the comments above. My answer would be to hire yourself a web developer. You can put an advert on here, or hire someone through services such as elance. The above is a simple job for a frontend developer, but unfortunately these forums are for questions\/answers that form a knowledge ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-24T03:45:16+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] Need to design a HTML Page with following specification [closed]\",\"datePublished\":\"2022-09-24T03:45:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/\"},\"wordCount\":563,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"html\",\"javascript\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/\",\"name\":\"[Solved] Need to design a HTML Page with following specification [closed] - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2022-09-24T03:45:16+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] Need to design a HTML Page with following specification [closed]\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] Need to design a HTML Page with following specification [closed] - JassWeb","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] Need to design a HTML Page with following specification [closed] - JassWeb","og_description":"[ad_1] I kind of agree with the comments above. My answer would be to hire yourself a web developer. You can put an advert on here, or hire someone through services such as elance. The above is a simple job for a frontend developer, but unfortunately these forums are for questions\/answers that form a knowledge ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/","og_site_name":"JassWeb","article_published_time":"2022-09-24T03:45:16+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] Need to design a HTML Page with following specification [closed]","datePublished":"2022-09-24T03:45:16+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/"},"wordCount":563,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["html","javascript"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/","url":"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/","name":"[Solved] Need to design a HTML Page with following specification [closed] - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-09-24T03:45:16+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-need-to-design-a-html-page-with-following-specification-closed\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] Need to design a HTML Page with following specification [closed]"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/10621","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=10621"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/10621\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=10621"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=10621"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=10621"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}