You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: learn-pr/wwl-azure/build-first-html-webpage/includes/1-introduction.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
Websites are used for many types of purposes. You can create storefronts, allowing a company to sell products. You could provide information about an organization, such as a digital brochure. Or you might develop a fully interactive application. Because of the flexibility and pervasiveness of websites, you can create all manner of projects. The first place to start when becoming a web developer is with Hypertext Markup Language or HTML.
2
2
3
-
Imagine you want to create a resume to post publicly. You decided to create a webpage, which can be widely shared. It's a great way to control how your information will be displayed.
3
+
Imagine you want to create a resume as a public post. You decided to create a webpage, which can be widely shared. It's a great way to control how your information is displayed.
4
4
5
-
But to begin creating the page, you'll need to explore a bit about web development.
5
+
But to begin creating the page, you need to explore a bit about web development.
6
6
7
-
In this module you'll learn the core concepts of web development. You'll explore terminology and commonly used tools. You'll also be introduced to the three main languages used to create a webpage.
7
+
In this module, you learn the core concepts of web development. You explore terminology and commonly used tools and are introduced to the three main languages used to create a webpage.
8
8
9
-
By the end of this module, you'll be able to:
9
+
By the end of this module, you're able to:
10
10
11
11
- Explain what a webpage and website are
12
12
- Highlight the differences between HTML, CSS, and JavaScript
Copy file name to clipboardExpand all lines: learn-pr/wwl-azure/build-first-html-webpage/includes/2-understand-terminology.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,15 @@ You'll soon be writing code to create a web page.
2
2
3
3
:::image type="content" source="../media/html-to-webpage.png" alt-text="Diagram showing HTML Code and the resulting webpage for an example resume.":::
4
4
5
-
When getting started with a new technology there are different terms you'll need to be familiar with. While your vocabulary will expand as you continue to grow as a web developer, there are certain core concepts which will help you get started.
5
+
When getting started with a new technology there are different terms, you need to be familiar with. While your vocabulary expands as you continue to grow as a web developer, there are certain core concepts which help you get started.
6
6
7
7
## Web Pages and Websites
8
8
9
-
Web pages, HTML pages, or simply pages are similar to a page in an e-book. They're a single screen that displays information. You might scroll up and down on the page, but it's made to be a collection of similar data. Software developers create pages in HTML *files*. A file is like a document you might create in a word processor. Instead of writing in a language like English or Spanish, you create files using the languages designed for websites.
9
+
Web pages, HTML pages, or simply pages are similar to a page in an e-book. They're a single screen that displays information. You might scroll up and down on the page, but the page was designed to be a collection of similar data. Software developers create pages in HTML *files*. A file is like a document you might create in a word processor. Instead of writing in a language like English or Spanish, you create files using the languages designed for websites.
10
10
11
11
In web development, a web page can be a single file or the result of bringing two or more files together. In the next section, you'll learn about the different files that can be used to create a web page.
12
12
13
-
A website is a set of pages. Returning to our e-book analogy, the e-book itself would be the website. It has all of the pages and is read by a user one page at a time. A website could be a single page, thousands of pages, and everything in between.
13
+
A website is a set of pages. As we return to our e-book analogy, the e-book itself would be the website. It has all of the pages and is read by a user one page at a time. A website could be a single page, thousands of pages, and everything in between.
14
14
15
15
As you read this unit, you're reading a web page. You scroll up and down to examine the information you want. You eventually navigate to a different page to review the next unit. All of these pages make up the site that is Microsoft Learn.
16
16
@@ -34,11 +34,11 @@ The "strong" tags tell the browser that the text in between should be bold. It w
34
34
35
35
### CSS
36
36
37
-
CSS adds more style to the page, like what color to make something or what font to use. CSS has become very powerful. It can even tell the browser where the information should be displayed on the page.
37
+
CSS adds more styles to the page, like what color to make something or what font to use. CSS is powerful, can even tell the browser where the information should be displayed on the page.
38
38
39
39
### JavaScript
40
40
41
41
Finally, JavaScript lets you do things to items on a page. JavaScript can tell the browser to create things like buttons or to display the date. But a script also tells the browser what to do when the button is clicked, like submitting data in a form.
42
42
43
43
> [!IMPORTANT]
44
-
> This module will focus solely on HTML and a single file for a web page. As you continue to grow as a developer, you will learn how to divide a page up into multiple files and why you might decide to do this.
44
+
> This module focuses solely on HTML and a single file for a web page. As you continue to grow as a developer, you learn how to divide up a page into multiple files and why you might decide to do this.
0 commit comments