forked from adityaoberai/lhd-helloworld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page1.html
26 lines (26 loc) · 1.54 KB
/
page1.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/22204dada8.js" crossorigin="anonymous"></script>
<title>Hello, World in a New Language</title>
</head>
<body>
<nav id="navbar">
<ul>
<li><a href="index.html" class="fas fa-arrow-left left-arrow"></a></li>
<li><a href="page2.html" class="fas fa-arrow-right right-arrow"></a></li>
</ul>
</nav>
<h1 class="first-heading">About this Tutorial</h1>
<h2>For all those new to the world of programming,</h2>
<h3>The "Hello, World" program is (arguably) the most famous program. It simply tells the computer to display the words “Hello, World!”. Traditionally, it’s the first program developers use to test systems. For programmers, seeing the two words on the screen means their code can compile, load, run and they can see the output.</h3>
<img src="docs/gif/Hello World.gif" alt="" class="general-image">
<h3>In this tutorial, you will create a simple <em>.NET</em> application written in <em>C#</em> that prints Hello, World! to the console.</h3>
<img src="docs/img/csharp-dotnet.png" alt="" class="general-image">
<h3>Before we go on to create our program, let's first learn a bit about .NET and set it up on our devices.</h3>
<a class="button" href="page2.html">More on .NET</a>
</body>
</html>