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>
<title>Short HTML</title>
<meta charset="UTF-8">
<h1>Hello World</h1>
<ul>
<li>First Element
</ul>
<meta content="UTF-8">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Form</title>
</head>
<body>
<form action="first.html" method="post">
<input type="text" size="30"><br>
<input type="email" size="30">
<button type="button" onclick="alert('Hello World')">Click Me</button>
<link rel="stylesheet" href="style.css">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>A brief introduction to HTML</title>
<style>
.blue_p {
color: blue;
}
</style>
<p style="color:red">Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Cupiditate est eum natus obcaecati placeat possimus tenetur!
Ab adipisci aliquam ducimus expedita, explicabo maxime minus nam nisi placeat, quidem reiciendis vero?</p>
<!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>
<!--Lists UL-->
<h3>Unordered Lists</h3>
<ul style="list-style-type: circle">
<li>HTML</li>
<li>CSS</li>
<li>Javascript</li>
</ul>
<!--Lists OL-->
<h3>Ordered Lists</h3>
<ol type="I">
<li>HTML</li>
<li>CSS</li>
<li>Javascript</li>
</ol>