1
Reply

Syntax of HTML <title> Element

    Page Title< /title>Title tag use to write page Title. </p> </div> </div> <div class="post_edit_delete"> </div> <div class="listing"> <div class="list-items feed-item"> <div class="user-details"> <div class="list-foot-action-ctrl"> <a class="userImageLeft display_none_mobile" href="https://www.c-sharpcorner.com/members/ashish-srivastava24">Ashish Srivastava</a> <div title="Updated Date" class="action-item"> <i class="icon-sprite-02 icon-time"></i><span class="post-time"> 8y </span> </div> <a onclick="likecount('12833');" id="ButtonLikeAnswer" commandname="UpdateLike" tooltip="Like" class="reply_Like"> <span><i id="like-12833" class="d-icon like"></i></span> <div id="12833"> <span id="LabelLikes" class="count">0</span> </div> </a> </div> </div> </div> </div> </div> </div> </ul> <div class="clear"> </div> </div> </div> <div class="clear"></div> <div style="display: none"> <div id="ctl00_MainContent_UpdatePanelSlide"> <div class="prevNextIdeas display_none_mobile"> <div id="ctl00_MainContent_liPrevious" class="PrevNextIdea clearfix"> <a href="https://www.c-sharpcorner.com/members/ashima-vishvkarma" id="ctl00_MainContent_AnchorPreviousAuthor" class="userImage"> <img src="https://www.c-sharpcorner.com/uploadfile/authorimage/defaultauthorimage.jpg" id="ctl00_MainContent_imgPreviousAuthor" style="width: 35px; height: 35px; display: block;" /></a> <div class="userDetail"> <a id="ctl00_MainContent_HyperlinkPrevious" class="prevIdea" href="https://www.c-sharpcorner.com/interview-question/html-ltheadgt-elements">HTML <head> Elements</a> </div> </div> <div id="ctl00_MainContent_liNext" class="NextIdea clearfix"> <a id="ctl00_MainContent_HyperlinkNext" class="prevIdea" href="https://www.c-sharpcorner.com/interview-question/define-html-ltbasegt-element">Define HTML <base> Element</a> <a href="https://www.c-sharpcorner.com/members/ashima-vishvkarma" id="ctl00_MainContent_AnchorNextAuthor" class="userImage"> <img src="https://www.c-sharpcorner.com/uploadfile/authorimage/defaultauthorimage.jpg" id="ctl00_MainContent_imgNextAuthor" style="width: 35px; height: 35px; display: block;" class="userImage" /></a> </div> </div> <input type="hidden" name="ctl00$MainContent$hiddenFieldNext" id="ctl00_MainContent_hiddenFieldNext" value="5086" /> <input type="hidden" name="ctl00$MainContent$hiddenFieldPrevious" id="ctl00_MainContent_hiddenFieldPrevious" value="5084" /> </div> </div> <style> .overlay-bg-response-alert { background-color: rgba(0, 0, 0, .5); width: 100%; height: 100%; position: fixed; top: 0; bottom: 0; left: 0; z-index: 9999; } .popup-window-response-alert { margin: auto; position: relative; top: 100px; background-color: var(--popupBg); height: auto; max-height: 660px; overflow: hidden; overflow-y: auto; width:fit-content; max-width: 520px; } .popup-wrap-response-alert { padding: 0px 20px 0px 20px; } .popup-header-response-alert { text-align: center; background-color: var(--popupBg); /* padding-top: 10px;*/ line-height: 30px; font-size: 18px; color: var(--texthightlight); font-weight: bold; position: sticky; top: 0px; } .popup-heading-response-alert, .popup-heading-response-alert > span { padding: 10px; font-size: 18px; font-weight: 500; margin-bottom: 0px; text-transform: capitalize; } .PopupContent-response .icon-close { cursor: pointer; } .PopupContent-response .icon-close::before { transform: rotate(45deg); } .PopupContent-response .icon-close::before, .PopupContent-response .icon-close::after { content: ""; display: block; position: absolute; top: 24px; right: 30px; background-color: #ffffff; width: 20px; height: 3px; border-radius: 2px; } .PopupContent-response .icon-close::after { transform: rotate(-45deg); } .popup-body-response-alert { overflow-y: auto; display: flex; justify-content: center; padding: 12px 24px; align-items: center; } .messagebody-alert { font-size: var(--FontSize16); font-weight: 300; } .popup-footer-response-alert { width: auto; text-align: center; padding: 12px 0; position: relative; } #PopUp-body-alert { display: none; } .popup-footer-response-alert{ display:flex; justify-content:center; gap:10px; } .btn_alert { color: #fff; margin:5px 0px 0px; padding: 5px 20px; border: none; font-size:14px; border-radius: 40px; cursor: pointer; text-align: center; text-decoration: none; display: inline-block; transition: background-color 0.3s; } @media screen and (max-width: 1023px) { .popup-window-response-alert { max-width: 90%; } } .light-mode .icon-close:hover::before, .light-mode .icon-close:hover::after { background-color: #000; } </style> <div class="PopupContent-response" id="PopUp-body-alert"> <div id="getStartedpopup_alert" class="overlay-bg-response-alert"> <div class="popup-window-response-alert"> <div class="popup-wrap-response-alert"> <div class="popup-header-response-alert"> <div class="popup-heading-response-alert"> <span id="MessageHeading">Message</span> </div> </div> <div id="btnFeedbackPopupClose_alert" class="icon-close" title="Close" data-dismiss="modal" onclick="hidePopupAlert()"></div> <div class="popup-body-response-alert"> <div class="messagebody-alert" id="messagebody_alert"></div> </div> <div class="popup-footer-response-alert"> <button id="btnsubmit_alert" type="button" class="btn_alert success-btn">OK</button> <button id="btncancel_alert" type="button" class="btn_alert danger-btn" onclick="hidePopupAlert()">Close</button> </div> </div> </div> </div> </div> <script> //function for both ok && cancel button function showPopupAlert(message, onConfirm) { document.getElementById('PopUp-body-alert').style.display = 'block'; // Set the message body text document.getElementById('messagebody_alert').innerHTML = message; // Ensure the buttons are visible document.getElementById('btnsubmit_alert').style.display = 'inline'; document.getElementById('btncancel_alert').style.display = 'inline'; // Set the on click event for the Submit button document.getElementById('btnsubmit_alert').onclick = function () { onConfirm(); document.getElementById('PopUp-body-alert').style.display = 'none'; // Hide the popup after confirmation }; // Set the on click event for the Cancel button document.getElementById('btncancel_alert').onclick = function () { document.getElementById('PopUp-body-alert').style.display = 'none'; // Hide the popup when cancel is clicked }; } //function for only ok button function showPopupMsg(message) { document.getElementById('PopUp-body-alert').style.display = 'block'; // Set the message body text document.getElementById('messagebody_alert').innerHTML = message; // Ensure the buttons are visible document.getElementById('btnsubmit_alert').style.display = 'inline'; document.getElementById('btncancel_alert').style.display = 'none'; // Set the on click event for the Cancel button document.getElementById('btnsubmit_alert').onclick = function () { document.getElementById('PopUp-body-alert').style.display = 'none'; // Hide the popup when cancel is clicked }; } function hidePopupAlert() { // Hide the popup document.getElementById('PopUp-body-alert').style.display = 'none'; } </script> </div> </section> <aside class="aside-right"> <style> .event-calendar{ display:flex; flex-direction:column-reverse; background:linear-gradient(-180deg, rgba(93,107,148, 40%) 40%, #0086dc 40%); text-align: center; border-radius: 4px; min-width: 42px; max-width: 42px; min-height:50px; } .event-list-item{ display:flex; flex-direction:row; align-items:center; gap:15px; margin-bottom:15px; } .event-title a{ font-size: var(--FontSize14); color:var(--texthightlight); } .event-title a:hover{ color:var(--textHover); } .local-day{ font-size:20px; font-weight:600; height:31px; color:var(--textColor); } .local-month{ font-size:12px; color:var(--textColor); } </style> <div id="ChapterEventsBox" class="wrap"> <div class="wrap-heading"> <div class="heading">Upcoming Events</div> <a href="/chapters/" class="btn-view-all">View all</a> </div> <ul id="ChapterEventsContainer" class="UpComing-Events-list"><li id='event-1' class='event-list-item'><div class='event-calendar'><span class='local-day' id='LocalDay1' runat='server' clientidmode='Static'></span> <span class='local-month' id='LocalMonth1' runat='server' clientidmode='Static'></span></div><div class='event-title'><a class='title' href='https://www.c-sharpcorner.com/events/live-discussion-on-startups-and-career-growth2' title='Live Discussion on Startups and Career Growth'>Live Discussion on Startups and Career Growth</a></div></li><li id='event-2' class='event-list-item'><div class='event-calendar'><span class='local-day' id='LocalDay2' runat='server' clientidmode='Static'></span> <span class='local-month' id='LocalMonth2' runat='server' clientidmode='Static'></span></div><div class='event-title'><a class='title' href='https://www.c-sharpcorner.com/events/from-prompt-to-product-coding-in-the-age-of-gen-ai' title='From Prompt to Product: Coding in the Age of Gen AI'>From Prompt to Product: Coding in the Age of Gen AI</a></div></li><li id='event-3' class='event-list-item'><div class='event-calendar'><span class='local-day' id='LocalDay3' runat='server' clientidmode='Static'></span> <span class='local-month' id='LocalMonth3' runat='server' clientidmode='Static'></span></div><div class='event-title'><a class='title' href='https://www.c-sharpcorner.com/events/autoarchive-client-documents-for-compliance-automate-your-business-processes-ep6' title='Auto-Archive Client Documents for Compliance: Automate Your Business Processes - Ep.6'>Auto-Archive Client Documents for Compliance: Automate Your Business Processes - Ep.6</a></div></li></ul> <input type="hidden" name="ctl00$RightSideCommonControl$UpcomingEvents$HiddenLocalTimezone" id="HiddenLocalTimezone" /> <input type="hidden" name="ctl00$RightSideCommonControl$UpcomingEvents$HiddenLocalDateTime" id="HiddenLocalDateTime" /> <div id="tzListDiv"> <input type="hidden" name="ctl00$RightSideCommonControl$UpcomingEvents$HiddenUTCDateTimeList_1" id="HiddenUTCDateTimeList_1" value="2025-06-17T04:30:00" /><input type="hidden" name="ctl00$RightSideCommonControl$UpcomingEvents$HiddenUTCDateTimeList_2" id="HiddenUTCDateTimeList_2" value="2025-06-17T09:30:00" /><input type="hidden" name="ctl00$RightSideCommonControl$UpcomingEvents$HiddenUTCDateTimeList_3" id="HiddenUTCDateTimeList_3" value="2025-06-17T16:30:00" /> </div> </div> <script> /* date-time conversion js Start */ var options = { weekday: "long", year: "numeric", month: "long", day: "numeric" }; function GetDayName(e) { var n = ["SUN", "MON", "TUE", "WED", "THU", "FRI", "SAT"]; return n[e]; } function getTimezoneName() { const e = new Date(); const n = e.toLocaleDateString(); const t = e.toLocaleDateString(undefined, { timeZoneName: "long" }); const o = t.indexOf(n); if (o >= 0) { return (t.substring(0, o) + t.substring(o + n.length)).replace(/^[\s,.\-:;]+|[\s,.\-:;]+$/g, ""); } return t; } function convertUTCDateToLocalDate(date) { var localDate = new Date(date); localDate.setMinutes(date.getMinutes() - date.getTimezoneOffset()); return localDate; } /* date-time conversion js Ends */ document.addEventListener("DOMContentLoaded", function () { // Set the local timezone name var tzInput = document.getElementById("HiddenLocalTimezone"); if (tzInput) { tzInput.value = getTimezoneName(); } var index = 1; while (true) { var hiddenInput = document.getElementById("HiddenUTCDateTimeList_" + index); if (!hiddenInput) break; var utcDateStr = hiddenInput.value; var utcDate = new Date(utcDateStr); // Convert UTC to Local var localDate = convertUTCDateToLocalDate(utcDate); var evntDt = convertUTCDateToLocalDate(utcDate); var monthDay = localDate.toLocaleString('default', { month: 'short' }); var shortMonthName = monthDay.substring(0, 3) + " " + localDate.getDate(); var localTimeString = localDate.toLocaleString('en-US', { hour: 'numeric', minute: 'numeric', hour12: true }); var time = localTimeString.split(' '); var timeHM = time[0].split(':'); var timeMin = (timeHM[1] === "00") ? timeHM[0] : time[0]; var localDayTime = GetDayName(localDate.getDay()) + " " + timeMin + " " + time[1]; var monthDaySplit = shortMonthName.split(' '); var monthEl = document.getElementById("LocalMonth" + index); var dayEl = document.getElementById("LocalDay" + index); if (monthEl) monthEl.textContent = monthDaySplit[0].toUpperCase(); if (dayEl) dayEl.textContent = monthDaySplit[1]; // Optional: Hide past event /* const currentdate = new Date(); if (evntDt <= currentdate) { var eventElement = document.getElementById(`event-${index}`); if (eventElement) { eventElement.style.display = "none"; } } */ index++; } }); </script> <div id="CsharpCorner_2019_336X280" style=" display: flex; flex-direction: row; gap: 10px; justify-content: center; position: sticky; top: 70px; "> <a href="https://www.c-sharpcorner.com/bounty/ai-for-peace-in-india"> <img id="imgAdslazyImageOnTop" data-src="https://www.c-sharpcorner.com/UploadFile/Ads/AI-for-Peace-in-India-ads-336X280 1.gif" alt="Submit your idea and earn rewards" title="Participate in the bounty and earn rewards" width="336" height="auto" loading="eager" style="display: none;" /> </a> <script> document.addEventListener("DOMContentLoaded", function () { setTimeout(() => { const img = document.getElementById("imgAdslazyImageOnTop"); img.src = img.getAttribute("data-src"); img.style.display = "block"; }, 5000); }); </script> </div> </aside> </div> </main> <style> .icon-sprite-footer { display: inline-block; border: none; cursor: pointer; background-image: url('/Images/social-icons.png'); /* Ensure the correct path and extension */ background-size: auto; /* Adjust if needed */ background-color: transparent; } .icon-sprite-footer-facebook { width: 24px; height: 30px; background-position: 0px 0px; } .icon-sprite-footer-twitter { width: 24px; height: 30px; background-position: -29px 0px; } .icon-sprite-footer-linkedin { width: 26px; height: 30px; background-position: -62px 0px; } .icon-sprite-footer-yt { width: 34px; height: 30px; background-position: -98px 0px; } .icon-sprite-footer-windows { width: 26px; height: 30px; background-position: 135px 0px; } .icon-sprite-footer-playstore { width: 26px; height: 30px; background-position: 98px 0px; } .icon-sprite-footer-appstore { width: 26px; height: 30px; background-position: 64px -2px; } .icon-sprite-footer-support { width: 27px; height: 30px; background-position: 32px 0px; } </style> <div id="NewFooter"> <footer class="main-footer"> <div class="inner-footer"> <div class="social-media-wrap"> <a title="Facebook" href="https://www.facebook.com/pages/C-Corner/194086953935286" target="_blank" style="text-decoration: none;" class="icon-sprite-footer icon-sprite-footer-facebook"></a> <a title="Twitter" href="https://twitter.com/csharpcorner" target="_blank" style="text-decoration: none;" class="icon-sprite-footer icon-sprite-footer-twitter"></a> <a title="LinkedIn" href="https://www.linkedin.com/company/csharpcorner/" target="_blank" style="text-decoration: none;" class="icon-sprite-footer icon-sprite-footer-linkedin"></svg> </a> <a title="Youtube" href="https://www.youtube.com/user/CsharpCorner1/" target="_blank" style="text-decoration: none;" class="icon-sprite-footer icon-sprite-footer-yt"></a> <a title="Windows App" href="https://www.microsoft.com/store/apps/9nblggh4tmwd?ocid=badge" target="_blank" style="text-decoration: none;" class="icon-sprite-footer icon-sprite-footer-windows"></a> <a title="Android App" href="https://play.google.com/store/apps/details?id=com.mcn.csharpcorner&pcampaignid=MKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1" target="_blank" style="text-decoration: none;" class="icon-sprite-footer icon-sprite-footer-playstore"></a> <a title="iOS App" href="https://itunes.apple.com/us/app/c-corner/id451080586?ls=1&mt=8" target="_blank" style="text-decoration: none;" class="icon-sprite-footer icon-sprite-footer-appstore"></a> <a title="Contact Support" href="/notification/contactsupport.aspx" target="_blank" class="icon-sprite-footer icon-sprite-footer-support"></a> </div> <div class="footer-links"> <a title="About Us" href="https://www.c-sharpcorner.com/about" class="foot-item-link">About Us</a> <a title="Contact Us" href="https://www.c-sharpcorner.com/contactus.aspx" class="foot-item-link">Contact Us</a> <a title="Privacy Policy" href="https://www.c-sharpcorner.com/privacypolicy.aspx" class="foot-item-link">Privacy Policy</a> <a title="Terms" href="https://www.c-sharpcorner.com/termsconditions.aspx" class="foot-item-link">Terms</a> <a title="Media Kit" href="https://www.c-sharpcorner.com/media/contactus.aspx" class="foot-item-link">Media Kit</a> <a title="Partners" href="https://www.c-sharpcorner.com/partners.aspx" class="foot-item-link">Partners</a> <a title="C# Tutorials" href="https://www.c-sharpcorner.com/csharp-tutorials" class="foot-item-link">C# Tutorials</a> <a title="Consultants" href="https://consultants.c-sharpcorner.com/" class="foot-item-link" target="_blank">Consultants</a> <a title="Ideas" href="https://www.c-sharpcorner.com/ideas" class="foot-item-link">Ideas</a> <a title="Report a Bug" href="https://www.c-sharpcorner.com/report-bugs" class="foot-item-link">Report A Bug</a> <a title="FAQs" href="https://www.c-sharpcorner.com/faq" class="foot-item-link">FAQs</a> <a title="Certifications" href="https://www.c-sharpcorner.com/certification" class="foot-item-link">Certifications</a> <a title="Sitemap" href="https://www.c-sharpcorner.com/sitemap/" class="foot-item-link">Sitemap</a> <a title="Stories" href="https://www.c-sharpcorner.com/stories" class="foot-item-link">Stories</a> <a title="CSharp TV" href="https://www.c-sharpcorner.com/live" class="foot-item-link">CSharp TV</a> <a title="DB Talks" href="https://www.dbtalks.com/" class="foot-item-link" target="_blank">DB Talks</a> <a title="Let's React" href="https://www.letsreact.org/" class="foot-item-link" target="_blank">Let's React</a> <a title="Web3 Universe" href="https://web3universe.today/" class="foot-item-link" target="_blank">Web3 Universe</a> <a title="interviews.help" href="https://www.interviews.help/" class="foot-item-link" target="_blank">Interviews.help</a> <a title="Jumpstart Blockchain" href="https://www.jumpstartblockchain.com/" class="foot-item-link" target="_blank">Jumpstart Blockchain</a> <a title="Build with JavaScript" href="https://www.buildwithjavascript.com/" class="foot-item-link" target="_blank">Build with JavaScript</a> </div> <div class="copyright"> <p>©2025 C# Corner.</p> <p>All contents are copyright of their authors.</p> </div> </div> </footer> </div> <div class="aspNetHidden"> <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="AC55590D" /> <input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEdAA7A36vgZlnyk9upgUocFyGG8tgt2KjyyiDhxtapMocmI++o/R2HzFhtDOGan4OOQda7G5nKn6lYdW6SaNZsGRgZCqrOBu8XPG1yHR+6F/gx8e0L4ZGv5zZNM9d/qtWRrW8scB/pZO1suY4udsuPVU49wAGICu1Nkktwh4BSif4/1CQ9sQqBDprGGmAnjELCaPvjG6qdIE5OpZ37LlSK0aTfj5gTChakUYLayK7jIO+nX4IfgOhkQJIWCbMs/lTWjG/xSRu31hFzWKv3Jd5N5pao9Kzukh+EaBCoq+Q5qIQfYwZXtDGTEceWfhEqUz9sgz9RlL5U" /> </div></form> <script type="text/javascript"> jQuery(document).click(function () { jQuery(".cotent-share-icon > ul").slideUp("fast"); }); jQuery(".btn-icon-dots").click(function (e) { e.stopPropagation(); jQuery(".cotent-share-icon > ul").slideToggle("fast"); }); </script> <script type="text/javascript"> var isEditorMode = false; function setHTMLvalue() { jQuery("#AnswerDetailHTML").val('<div class="markdown-body editormd-preview-container" previewcontainer="true" style="padding: 0;">' + window.md.getPreviewedHTML() + "</div>"); isEditorMode = false; const textarea = document.getElementById("TextBoxAnswer"); const noDataElement = document.getElementById("Error_Msg"); if (!textarea.value.trim()) { noDataElement.style.color = "red"; noDataElement.textContent = "Reply message cannot be empty."; return false; } return true; //document.getElementById("MD_Sections").style.display = "none"; //document.getElementById("MD_Section").style.display = "none"; } function initMarkMarkDown() { (function () { makeMarkDown(); })(); function makeMarkDown() { if (isEditorMode) { return false; } document.getElementById("MD_Sections").style.display = "block"; document.getElementById("MD_Section").style.display = "block"; jQuery(".postAnswer").show(); isEditorMode = true; (function () { jQuery('#TextBoxAnswer').val(''); window.md = editormd("editormd", { toolbarIcons: "full_no_img", width: "99.8%", height: 400, placeholder: "Please enter your answer", path: "/JavaScripts/MarkDownJs/lib/", theme: "light", markdown: jQuery('#TextBoxAnswer').val(), saveHTMLToTextarea: true, tex: true, emoji: false, taskList: true, lineWrapping: true, tocm: true, imageUpload: false, autoFocus: false, fullscreen: false, htmlDecode: "style,script,iframe|on*", lang: { name: "en" }, pluginPath: "/plugin/", onload: function () { this.watch() } }); })(); return false; } } async function likecount(answerId) { try { const response = await fetch('/Interviews/Answer/Answers.aspx/LikeReply', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Accept': 'application/json', }, body: JSON.stringify({ answerId: parseInt(answerId) }) }); if (response.ok) { const data = await response.json(); if (data.d === 1) { var divElement = document.getElementById(answerId); var spanElement = divElement.querySelector("span"); if (spanElement) { var currentValue = parseInt(spanElement.textContent); if (!isNaN(currentValue)) { var newValue = currentValue + 1; spanElement.textContent = newValue; } else { console.log("Error: Text content of the span element is not a valid integer."); } } } } else { console.error('Error fetching like count:', response.status); } } catch (error) { console.error('Error fetching like count:', error); } } </script> <script src="https://www.c-sharpcorner.com/JavaScripts/date_time_conversion_20200627.js" type="text/javascript"></script> <script src="https://www.c-sharpcorner.com/JavaScripts/NewScripts/NewCommon_20230624.js"></script> <script></script> <script> function getCookie(cookieName) { var name = cookieName + "="; var allCookieArray = document.cookie.split(';'); for (var i = 0; i < allCookieArray.length; i++) { var temp = allCookieArray[i].trim(); if (temp.indexOf(name) == 0) return temp.substring(name.length, temp.length); } return ""; } </script> <script> function makeSticky() { if (!window.jQuery) { setTimeout(makeSticky, 100); return; } var s = jQuery(".sticky-ad"); var w = jQuery(window); var t = s.length > 0 ? s.offset().top : 0; var f = jQuery("footer"); var ft = f.offset().top; if (s.length > 0) { w.scroll(function () { if (w.scrollTop() + 47 > t) { if (w.scrollTop() + 47 + s.innerHeight() > ft + 5) { s.removeClass("fixed-t"); s.addClass("fixed-b"); } else { s.addClass("fixed-t"); s.removeClass("fixed-b"); } } else { s.removeClass("fixed-t") s.removeClass("fixed-b") } }) } } </script> </body> <script type="text/javascript" src="https://www.c-sharpcorner.com/jquery/jquery.min-20230616.js"></script> <script src="https://www.c-sharpcorner.com/JavaScripts/NewScripts/NewPopupPlugin.js"></script> <script src="https://www.c-sharpcorner.com/JavaScripts/NewScripts/NewEmotions_200181208.js"></script> <script src="https://www.c-sharpcorner.com/JQuery/jquery-Mention-Combined.js"></script> <script src="https://www.c-sharpcorner.com/JavaScripts/Live/owl.carousel.min.js"></script> <script src="../../../Scripts/bootstrap.js"></script> <script type="text/javascript" src="https://www.c-sharpcorner.com/JavaScripts/NewScripts/login-v3.js"></script> </html>