Skip to content

Instantly share code, notes, and snippets.

View docsallover's full-sized avatar

DocsAllOver docsallover

View GitHub Profile
@docsallover
docsallover / whatishtml.html
Created February 21, 2023 07:10
DocsAllOver FAQ's - What is HTML ?
<!DOCTYPE html>
<html>
<head>
<title>My Web Page</title>
</head>
<body>
<h1>Welcome to my web page!</h1>
<p>This is a paragraph of text on my web page.</p>
<a href="https://www.example.com">Click here to visit Example.com</a>
</body>
@docsallover
docsallover / doctype.html
Created February 21, 2023 08:04
DocsAllOver - HTML Faq's - Basic Components - doctype
<!DOCTYPE html>
@docsallover
docsallover / html-structure.html
Created February 21, 2023 08:08
DocsAllOver - HTML Faq's - Basic Components - Structure
<html>
<head>
<title>My HTML Document</title>
</head>
<body>
<h1>Welcome to my HTML document!</h1>
<p>This is a paragraph of text.</p>
</body>
</html>
@docsallover
docsallover / head.html
Created February 21, 2023 17:08
DocsAllOver - HTML Faq's - Basic Components - Head Tag
<head>
<title>My HTML Document</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js"></script>
</head>
@docsallover
docsallover / body.html
Created February 21, 2023 17:09
DocsAllOver - HTML Faq's - Basic Components - Body Tag
<body>
<h1>Welcome to my HTML document!</h1>
<p>This is a paragraph of text.</p>
<img src="my-image.jpg" alt="A picture of something.">
<a href="https://www.example.com">Click here to visit Example.com</a>
</body>
@docsallover
docsallover / xhtml.html
Created February 21, 2023 17:29
DocsAllOver - HTML Faq's - Xhtml
<!DOCTYPE html>
<html>
<head>
<title>My XHTML Page</title>
</head>
<body>
<h1>Welcome to my page!</h1>
<p>This is some text on my page.</p>
</body>
</html>
@docsallover
docsallover / block-inline.html
Created February 21, 2023 18:23
DocsAllOver - HTML Faq's - Block Vs Inline
<h1>This is a heading</h1>
<p>This is a paragraph with <a href="#">a link</a> and <span>some text</span>.</p>
@docsallover
docsallover / attribute.html
Created February 21, 2023 18:27
DocsAllOver - HTML Faq's - Attributes
<a href="https://www.example.com">Click here</a>
@docsallover
docsallover / image.html
Created February 21, 2023 18:41
DocsAllOver - HTML Faq's - Image
<img src="path/to/image.jpg" alt="A beautiful image">
@docsallover
docsallover / table.html
Created February 21, 2023 18:47
DocsAllOver - HTML Faq's - Table
<table>
<tr>
<td>First Name</td>
<td>Last Name</td>
<td>Email Address</td>
</tr>
<tr>
<td>John</td>
<td>Doe</td>
<td>john.doe@example.com</td>