-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 2.25 KB
/
index.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
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My First Site</title>
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet">
<link href="styles/main.css" rel="stylesheet">
</head>
<body>
<h1>hello world!</h1>
<h2>Nice to meet you!</h2>
<img src="images/hello-world.png" alt="the earth saying hello and the moon">
<h3>"Hello, World!" program</h3>
<p>A "Hello, World!" program is generally a simple computer program that outputs (or displays) to the screen (often the console) a message similar to "Hello, World!" while ignoring any user input. A small piece of code in most general-purpose programming languages, this program is used to illustrate a language's basic syntax. A "Hello, World!" program is often the first written by a student of a new programming language, but such a program can also be used as a sanity check to ensure that the computer software intended to compile or run source code is correctly installed, and that its operator understands how to use it.</p>
<h4>Note that HTML is not a programming language</h4>
<p>The HyperText Markup Language, or <strong>HTML</strong>, is the standard markup language for documents designed to be displayed in a web browser.</p>
<p>It can be assisted by technologies such as</p>
<ul>
<li>Cascading Style Sheets (<strong>CSS</strong>)</li>
<li>and scripting languages such as <strong>JavaScript</strong>.</li>
</ul>
<h5>Sources:</h5>
<ol>
<li>
<p>Created along with the beginner-friendly learning resource <a href="https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web">"Getting started with the Web"</a> from the <a href="https://developer.mozilla.org/en-US/">MDN Web Docs</a>.</p>
</li>
<li>
<p>Definitions: <a href="https://wikipedia.org/">Wikipedia</a></p>
</li>
</ol>
<h6>Change your name:</h6>
<button>Change user</button>
<a href="https://glmvc.github.io/first-site-upgrade/"><h6>Check out the upgraded version of this site!</h6></a>
<script src="scripts/main.js"></script>
</body>
</html>