Created
October 19, 2019 07:36
-
-
Save myisaak/e473364be7496dc30e7a8432b7828dc6 to your computer and use it in GitHub Desktop.
CS 193X // source https://jsbin.com/gegasit
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> | |
<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> |
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
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