-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasicHTML.html
More file actions
45 lines (38 loc) · 1.18 KB
/
BasicHTML.html
File metadata and controls
45 lines (38 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<title>Basic HTML</title>
<meta charset="utf-8">
<a href="https://www.facebook.com/ShineChapel/">My Church Website link</a>
</head>
<br>
<br>
<input type="date">
<input type="time">
<input type="datetime-local">
<body>
<header>
<h1>The Basic HTML Template</h1>
<p>Introduction to basic HTML syntax</p>
<p>Added another paragraph.</p>
<em>Trying out the emphasis function</em>
</header>
<br>
<details>
<summary>No access beyond this point</summary>
<p>Because there is building works going on here</p>
</details>
<article>
<hi>Google</hi>
<p>
Google is a massive American technology company,<br>
founded in 1998 by Larry Page and Sergey Brin,<br>
specializing in Internet-related services,<br>
software, and hardware. Its flagship product is the<br>
world's most popular search engine, which indexes billions<br>
of webpages to help users find information, along with<br>
products like Android, YouTube, Gmail, and Google Chrome.
</p>
</article>
</body>
</html>