Skip to content

Instantly share code, notes, and snippets.

@jordangarcia
Created June 24, 2019 14:21
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 jordangarcia/0c3009b9888d9c68a43ae7ea26ae2950 to your computer and use it in GitHub Desktop.
Save jordangarcia/0c3009b9888d9c68a43ae7ea26ae2950 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Horizon's first webpage</title>
</head>
<body style="background-color: #f7f8f9; padding: 30px">
<div style="background-color: white; padding: 30px 50px; border: 1px solid #cbcbcb;">
<h1 style="font-family: arial; font-size: 46px; font-weight:normal;">
Let's learn HTML
</h1>
<h2 style="font-family: arial; font-size: 32px; font-weight:normal;">
Why is HTML an important language?
</h2>
<p style="font-family: Roboto; font-size: 14px;">
<strong>HTML</strong> and CSS are the basic programming languages for
web development and design. ... Learning <strong>HTML</strong> can be
used for situations like formatting a blog or email, working with a CMS,
embedding external content on your site, and creating usable content.
</p>
<h2 style="font-family: arial; font-size: 32px; font-weight:normal;">
Different kinds of HTML tags
</h2>
<ul>
<li>
Unordered lists &lt;ul&gt;
</li>
<li>
Paragraphs &lt;p&gt;
</li>
<li>
Headings &lt;h1&gt; &lt;h2&gt; &lt;h3&gt;
</li>
</ul>
<h2
style="color: red; font-family: arial; font-size: 32px; font-weight:normal;"
>
<span style="background-color: #efaa43;">
Different kinds of HTML tags
</span>
</h2>
<ol>
<li>Font</li>
<li>Font size</li>
<li>color</li>
<li>fotn weight / style - bold or italic</li>
<li>etc</li>
</ol>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment