Skip to content

Instantly share code, notes, and snippets.

@fredriccliver
Created September 3, 2021 07:40
Show Gist options
  • Save fredriccliver/f5e572068eacf3a768e711c05c2b8c38 to your computer and use it in GitHub Desktop.
Save fredriccliver/f5e572068eacf3a768e711c05c2b8c38 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <!--<![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="">
<style>
body{
background-color: white;
margin: 0;
padding: 0;
color: black;
}
</style>
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<h1>Title</h1>
<span>Horizontal</span>
<span>Menu</span>
<span>Is</span>
<span>Here</span>
<div>Division</div>
<div>follows horizontally</div>
<img src="https://images.unsplash.com/photo-1630601698490-b7bf0b6295ce?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=2550&q=80" alt="">
<!-- break -->
line
<br>
line
<br />
line
<p>And paragraph is here. to show a long text</p>
<a href="https://google.com">GOOGLE</a>
<!-- ordered line -->
<ol>
<li>1st</li>
<li>2st</li>
<li>3st</li>
</ol>
<!-- unordered line -->
<ul>
<li>1st</li>
<li>2st</li>
<li>3st</li>
</ul>
<ul>
<li style="display:inline;">1st</li>
<li style="display:inline;">2st</li>
<li style="display:inline;">3st</li>
</ul>
<div style="display:flex; flex-direction:column;">
<span>Name 1</span>
<span>Name 2</span>
<span>Name 3</span>
</div>
<div style="display:flex; flex-direction:row;">
<span>Name 1</span>
<span>Name 2</span>
<span>Name 3</span>
</div>
<script src="" async defer></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment