Skip to content

Instantly share code, notes, and snippets.

@Queenscripts
Created May 31, 2019 03:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Queenscripts/071e5a977c0635bda2fc241573af732a to your computer and use it in GitHub Desktop.
Save Queenscripts/071e5a977c0635bda2fc241573af732a to your computer and use it in GitHub Desktop.
Introductory HTML + CSS | Module 5
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>About me</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1> A Tribute to CSS </h1>
<h2> I don't know everything there is to know about CSS, but you bet ya I'd love to know! </h2>
<p> I am building solidarity with the lessons I must learn in my life. Today, HTML is a lesson I conquer & adore. </p>
<h2> CSSkills </h2>
<ul>
<li> Animations </li>
<li> Media Queries </li>
<li> HTML Tags that represent CSS </li>
</ul>
<h2> Contact Info </h2>
<p> Twitter: <a href="https://twitter.com/_queen_shabazz"> @_queen_shabazz</a></p>
</body>
</html>
body {
background-color: azure;
border: 1px solid aquamarine;
padding: 30px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment