Skip to content

Instantly share code, notes, and snippets.

@myisaak
Created October 19, 2019 07:36
Show Gist options
  • Save myisaak/e473364be7496dc30e7a8432b7828dc6 to your computer and use it in GitHub Desktop.
Save myisaak/e473364be7496dc30e7a8432b7828dc6 to your computer and use it in GitHub Desktop.
CS 193X // source https://jsbin.com/gegasit
<!DOCTYPE html>
<html>
<head>
<title>CS 193X</title>
<style id="jsbin-css">
body {
background-color: white;
font-family: Helvetica;
text-align: center;
}
#box {
border: 3px solid hotpink;
background-color: lavenderblush;
text-align: left;
}
.highlight {
background: yellow;
}
</style>
</head>
<body>
<h1>CS 193X: Web Fun</h1>
<div id="box">
<strong>Announcements</strong><br/>
4/3: Homework 0 is out! <span class="highlight">Due Friday</span>.<br/>
4/3: Office hours are now posted.
</div>
<br/>
<br/>
<a href="http://cs193x.stanford.edu/syllabus">
View Syllabus
</a>
<script id="jsbin-source-html" type="text/html"><!DOCTYPE html>
<html>
<head>
<title>CS 193X</title>
</head>
<body>
<h1>CS 193X: Web Fun</h1>
<div id="box">
<strong>Announcements</strong><br/>
4/3: Homework 0 is out! <span class="highlight">Due Friday</span>.<br/>
4/3: Office hours are now posted.
</div>
<br/>
<br/>
<a href="http://cs193x.stanford.edu/syllabus">
View Syllabus
</a>
</body>
</html>
</script>
<script id="jsbin-source-css" type="text/css">body {
background-color: white;
font-family: Helvetica;
text-align: center;
}
#box {
border: 3px solid hotpink;
background-color: lavenderblush;
text-align: left;
}
.highlight {
background: yellow;
}
</script>
</body>
</html>
body {
background-color: white;
font-family: Helvetica;
text-align: center;
}
#box {
border: 3px solid hotpink;
background-color: lavenderblush;
text-align: left;
}
.highlight {
background: yellow;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment