Skip to content

Instantly share code, notes, and snippets.

View tomasovic's full-sized avatar
🏠
Working from home

Milan Tomasovic tomasovic

🏠
Working from home
View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>A brief introduction to HTML</title>
</head>
<body>
</body>
</html>
@tomasovic
tomasovic / gist:cb1a9630bf4ed76c90fc3909187f00a3
Created January 14, 2017 19:57
Adding elements to HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>A brief introduction to HTML</title>
</head>
<body>
<h1>Beginners HTML</h1>
<p>Learn HTML</p>
<p>This is an introduction course to HTML.</p>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>A brief introduction to HTML</title>
</head>
<body>
<h1>Beginners HTML</h1>
<h2>Beginners HTML</h2>
<h3>Beginners HTML</h3>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>A brief introduction to HTML</title>
</head>
<body>
<h1>Beginners HTML</h1>
<h2>Beginners HTML</h2>
<h3>Beginners HTML</h3>
<nav>
Go to <a href="http://www.google.com" target="_blank">Google</a>
<a href="first.html">First Page</a>
<a href="second.html">Second Page</a>
<a href="third.html">Third Page</a>
</nav>
<p><img src="http://lorempixel.com/400/200/" alt="Radnom picture" width="200px" height="100px"></p>
<a href="">
<p><img src="http://lorempixel.com/400/200/" alt="Radnom picture" width="200px" height="100px"></p>
</a>
<!--Lists OL-->
<h3>Ordered Lists</h3>
<ol type="I">
<li>HTML</li>
<li>CSS</li>
<li>Javascript</li>
</ol>
<!--Lists UL-->
<h3>Unordered Lists</h3>
<ul style="list-style-type: circle">
<li>HTML</li>
<li>CSS</li>
<li>Javascript</li>
</ul>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>A brief introduction to HTML</title>
</head>
<body>
<!--Headers-->
<h1>Beginners HTML</h1>
<h2>Beginners HTML</h2>