JavaScript preprocessors can help make authoring JavaScript easier and more convenient. For instance, CoffeeScript can help prevent easy-to-make mistakes and offer a cleaner syntax and Babel can bring ECMAScript 6 features to browsers that only support ECMAScript 5.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
HTML Settings
Here you can Sed posuere consectetur est at lobortis. Donec ullamcorper nulla non metus auctor fringilla. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec id elit non mi porta gravida at eget metus. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.
<!DOCTYPE html>
<html>
<head>
<title>ForeSight Software & Systems</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="~/Images/Favicon/TS3.ico" rel="shortcut icon" type="image/x-icon" />
@Styles.Render("~/Content/css")
@RenderSection("individualCSS", required: false)
</head>
<body class="columnWrap spaceBetween">
<header class="rowNoWrap spaceBetween centerItems">
<h3 id="courseName">Brookfield Country Club</h3>
<button type="button" class="burgerButton">
<span class="burger"></span>
<span class="burger"></span>
<span class="burger"></span>
</button>
</header>
<article>
<div id="contentWrapper" class="columnWrap spaceBetween">
<div id="content" class="columnNoWrap">
<div class="redAndBrown rowNoWrap spaceBetween centerItems">
<select>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<h2>Water</h2>
<a class="iconSize25 infoBubble_YellowRedDollarSign centerItems" href="#"></a>
<span>$5.00</span>
</div>
<div class="redAndBrown rowNoWrap spaceBetween centerItems">
<select>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<h2>Budweiser</h2>
<a class="iconSize25 infoBubble_YellowRedDollarSign centerItems" href="#"></a>
<span>$2.00</span>
</div>
<div class="redAndBrown rowNoWrap spaceBetween centerItems">
<select>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<h2>Sport Drink</h2>
<a class="iconSize25 infoBubble_YellowRedDollarSign centerItems" href="#"></a>
<span>$5.00</span>
</div>
<div class="redAndBrown rowNoWrap spaceBetween centerItems">
<select>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
<h2>Sleeve Golf Balls</h2>
<a class="iconSize25 infoBubble_Blue centerItems" href="#"></a>
<span>$5.00</span>
</div>
</div>
<div id="pageFooter" class="columnWrap" >
<a id="specials" class="redAndOrange rowNoWrap spaceAround centerItems" href="#">
<div class="infoBubble_YellowRedDollarSign iconSize25"></div>
<h2>Specials</h2>
<div class="infoBubble_YellowRedDollarSign iconSize25"></div>
</a>
<a id="priorOrders" class="redAndGreen rowNoWrap spaceAround centerItems" href="#">
<div class="iconSize25 tags_Purple centerItems"></div>
<div><h2>Prior Orders</h2></div>
<div class="iconSize25 tags_Purple centerItems"></div>
</a>
</div>
</div>
</article>
<aside id="aside" class="adArea">Advertisement Banner</aside>
<nav class="rowNoWrap spaceAround">
<a href=""><div id="tagCupAndBurger_Active" class="iconSizeSmall"></div></a>
<a href=""><div id="gpsTeeFlag_White"class="iconSizeSmall"></div></a>
<a href=""><div id="scoreCard_White" class="iconSizeSmall"></div></a>
<a href=""><div id="deliveryCar_White" class="iconSizeSmall"></div></a>
</nav>
<footer class="rowNoWrap flexEnd copyright">
<p>
<span>© 2015</span>
<span><a href="http://www.kevinbrasfield.com" target="_blank"><em>T<sub>S</sub><sup>3</sup></em> ®</a></span>
</p>
</footer>
</body>
</html>
* {
margin: 0;
padding: 0;
}
.flexWrapper {
/* height: 19rem; */
display: flex;
flex-flow: row no-wrap;
justify-content: flex-start;
align-items: center;
}
.nonFlexRow {
width: 90%;
margin: 1rem;
}
.flexRow {
flex: 0 1 auto;
align-self: flex-end;
}
Also see: Tab Triggers