<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Description about the website that is shown when Google shows the search results.">
<meta name="keywords" content="Keywords used to search for the website">
<meta name="author" content="Paptido Inc." />
<meta name="date" content="Oct 09, 2022" />
<link rel="icon" href="assets/images/site-logo.svg" type="image/svg">
<!-- Google font link goes here -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://templatedesigns.paptido.com/CSSReset.css" />
<link rel="stylesheet" type="text/css" href="stylesheets/index.css" />
<title>Title of the website that is displayed on the browser window tab</title>
<script src="scripts/index.js" defer></script>
<noscript>
<p>This website requires JavaScript to function properly. Please enable JavaScript in your browser settings.</p>
</noscript>
</head>
<body>
</body>
</html>
BASE CSS CODE:
:root {
--primary-color: #141E30;
}
* {
box-sizing: border-box;
}
html {
font-family: "Open Sans", sans-serif;
font-size: 16px;
scroll-behavior: smooth;
}
body {
line-height: 1.3;
}
a {
text-decoration: none;
color: var(--primary-color);
}
button {
border: none;
border-radius: 0.25rem;
background-color: var(--primary-color);
color: #fff;
cursor: pointer;
}
ol {
list-style: decimal;
list-style-position: inside;
}