Skip to content

Instantly share code, notes, and snippets.

@bearlike
Created June 20, 2020 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bearlike/86699ebaa054842979a7beec032756e2 to your computer and use it in GitHub Desktop.
Save bearlike/86699ebaa054842979a7beec032756e2 to your computer and use it in GitHub Desktop.
HTML Document used in the scaling experiment
<html>
<head>
<style>
html {
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
body {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 14px;
line-height: 1.42857143;
color: #333;
background-color: #fff;
}
@media (min-width: 992px)
.container {
width: 970px;
}
@media (min-width: 768px)
.container {
width: 750px;
}
.container {
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
h1 {
font-size: 36px;
}
h1 {
margin-top: 20px;
margin-bottom: 10px;
}
h1 {
font-family: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit;
}
h1 {
margin: .67em 0;
font-size: 2em;
}
</style>
<title>Testing</title>
</head>
<body>
<div class="container">
<h1>Hello Bros!</h1>
<p>This page is brought to you by <a href="https://thekrishna.in/blogs">https://thekrishna.in/blogs</a></p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment