Created
August 15, 2021 21:38
-
-
Save daniel-schroeder-dev/0d1d3bff13f120fb9027e60508aed77a to your computer and use it in GitHub Desktop.
Joshua HTML VS
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> | |
<!--[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=""> | |
</head> | |
<body> | |
<h1>Tacos vs. Pizza</h1> | |
<div id="taco-box" class="box"> | |
<img src="taco.png" /> | |
<p>Tacos rule</p> | |
<p>They are the most-superior food on the planet!</p> | |
</div> | |
<div id="pizza-box" class="box"> | |
<img src="pizza.png" /> | |
<p>Pizza4Lyfe</p> | |
<p>Pineapple on pizza is the truth!</p> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment