Created
February 17, 2021 13:15
-
-
Save ManojSatishkumar/99f697078b178ade577aef19ebfb9d23 to your computer and use it in GitHub Desktop.
Auth snippet example
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 lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>MSK Snippets | Login</title> | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>MSK Snippets | Login</title> | |
<!-- Global site tag (gtag.js) - Google Analytics --> | |
<script | |
async | |
src="https://www.googletagmanager.com/gtag/js?id=UA-128563001-5" | |
></script> | |
<script> | |
window.dataLayer = window.dataLayer || []; | |
function gtag() { | |
dataLayer.push(arguments); | |
} | |
gtag("js", new Date()); | |
gtag("config", "UA-128563001-5"); | |
</script> | |
<script | |
data-ad-client="ca-pub-8918151191552563" | |
async | |
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" | |
></script> | |
<link | |
rel="shortcut icon" | |
href="/apps/msk-snippets/images/favicon.png" | |
/> | |
</head> | |
<body> | |
<div id="root"></div> | |
<script src="main.js"></script> | |
<style> | |
.CodeMirror { | |
height: 445px !important; | |
} | |
</style> | |
</body> | |
</html> | |
</head> | |
</html> |
Let's try making it semantic HTML
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This looks good