Skip to content

Instantly share code, notes, and snippets.

@betsydupuis
Created August 22, 2017 00:10
Show Gist options
  • Save betsydupuis/237bf0d22629d1a7724a0cb426823322 to your computer and use it in GitHub Desktop.
Save betsydupuis/237bf0d22629d1a7724a0cb426823322 to your computer and use it in GitHub Desktop.
ASCII Art - Texas

ASCII Art - Texas

A brief explanation of HTML and CSS with ASII art for fun.

A Pen by Betsy on CodePen.

License.

<!--This is a comment in HTML! Everthing below is HTML. You probably remember making a tag and using style="..." to make your style changes-->
<pre style="color: white; background-color: red;">
____
!
! !
! `- _ _ _
| ``` !
_____! !
\, \
l _ ;
\ _/ \. /
\ .’
. ./’
`. ,
\ ;
``’
</pre>
/* This is a comment in CSS!
The CSS code below styles the same HTML element, but in a different text file.
*/
body {
background-color: red;
}
pre {
padding: 50px;
font-weight:800;
width: 500px;
margin: 0 auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment