-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello-world.html
More file actions
60 lines (41 loc) · 2.28 KB
/
hello-world.html
File metadata and controls
60 lines (41 loc) · 2.28 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello World</title>
<link href="assets/bootstrap.min.css" rel="stylesheet">
</head>
<body class="container my-5">
<header class="text-center">
<h1 class="display-4">Example Blog</h1>
</header>
<main class="mx-auto my-5">
<h1 id="hello-world-blog">Hello World Blog</h1>
<h2 id="introduction">Introduction</h2>
<p>Welcome to my developer blog! In this blog post, we will explore the exciting world of “Hello World” programs.</p>
<h2 id="what-is-a-hello-world-program">What is a “Hello World” Program?</h2>
<p>A “Hello World” program is a simple program that outputs the phrase “Hello, World!” It is often used as a first introduction to programming languages.</p>
<h2 id="why-hello-world">Why “Hello World”?</h2>
<p>The “Hello World” program serves as a starting point for beginners to understand the basic syntax and structure of a programming language. It is a way to get familiar with the fundamental concepts before diving into more complex topics.</p>
<h2 id="examples-of-hello-world-programs">Examples of “Hello World” Programs</h2>
<p>Here are some examples of “Hello World” programs in different programming languages:</p>
<h3 id="python">Python</h3>
<pre><code>print("Hello, World!")
</code></pre>
</main>
<footer class="my-5 text-body-secondary text-center text-small">
<ul class="list-inline">
<li class="list-inline-item"><a class="link-underline link-underline-opacity-0 link-underline-opacity-75-hover"
href="https://www.facebook.com/#">Facebook</a></li>
<li class="list-inline-item"><a class="link-underline link-underline-opacity-0 link-underline-opacity-75-hover"
href="https://www.twitter.com/#">Twitter</a></li>
<li class="list-inline-item"><a class="link-underline link-underline-opacity-0 link-underline-opacity-75-hover"
href="https://www.instagram.com/#">Instagram</a></li>
<li class="list-inline-item"><a class="link-underline link-underline-opacity-0 link-underline-opacity-75-hover"
href="https://www.linkedin.com/#">LinkedIn</a></li>
</ul>
</footer>
<script src="assets/bootstrap.bundle.min.js"></script>
</body>
</html>