Skip to content

Instantly share code, notes, and snippets.

View eforth's full-sized avatar

Ervin Forth eforth

View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="http://static.pureexample.com/js/flot/excanvas.min.js"></script><![endif]-->
<!DOCTYPE html>
<html>
<head>
<title>Demo HTML</title>
</head>
<body>
<img src="https://d4n5pyzr6ibrc.cloudfront.net/media/27FB7F0C-9885-42A6-9E0C19C35242B5AC/4785B1C2-8734-405D-96DC23A6A32F256B/thul-90efb785-97af-5e51-94cf-503fc81b6940.jpg" width="200">
<p>This is a paragraph</p>
@eforth
eforth / tables.html
Created June 9, 2017 15:17
Basic and Advance HTML Tables
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<!-- 2x3 HTML Table -->
<table border="2">
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<!-- inline css is added the element directly via the "style" attribute -->
<p style="color:red;">Hello World</p>
</body>
</html>
@eforth
eforth / internal-css.html
Created June 9, 2017 17:06
Internal CSS
<!DOCTYPE html>
<html>
<head>
<title></title>
<!-- The style tag is located in the head tag -->
<style>
p {
color:red;
}
</style>
<!DOCTYPE html>
<html>
<head>
<title></title>
<!-- The link tag is placed in the head tag and refers to an external css file via the href attribute -->
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<p>Hello World</p>
</body>
@eforth
eforth / index.html
Created June 24, 2017 15:14
Facebook Templated (Week 3)
<!DOCTYPE html>
<html>
<head>
<title>Ervin Forth | Facebook</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<div class="top-bar-wrapper">
<section>
@eforth
eforth / styles.css
Last active June 24, 2017 15:27
Facebook Template CSS (Week 3)
body {
margin: 0;
}
.top-bar-wrapper {
background-color:#4d5ea1;
height: 46px;
}
.top-bar-wrapper section {
padding-top: 9px;
}
@eforth
eforth / index.html
Created June 24, 2017 19:58
Facebook Template HTML (Week 4)
<!DOCTYPE html>
<html>
<head>
<title>Ervin Forth | Facebook</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<div class="top-bar-wrapper">
<section>
@eforth
eforth / styles.css
Created June 24, 2017 20:23
Facebook Template CSS (Week 4)
body {
margin: 0;
background-color: #E4E5E8;
}
.top-bar-wrapper {
background-color:#4d5ea1;
height: 46px;
}
.top-bar-wrapper section {
padding-top: 9px;