Skip to content

Commit ea10aef

Browse files
authored
changed files by pdets auto publish service, publishid[850a90f5-db26-48e5-9625-7580b13eda52] and do [publish].
1 parent 852f068 commit ea10aef

16 files changed

+44
-42
lines changed

learn-pr/wwl-azure/build-first-html-webpage/1-introduction.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Introduction
44
metadata:
55
title: Introduction
66
description: "Introduction to the module."
7-
ms.date: 05/08/2024
7+
ms.date: 04/25/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-azure/build-first-html-webpage/2-understand-terminology.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ uid: learn.wwl.build-first-html-webpage.understand-terminology
33
title: Understand terminology
44
metadata:
55
title: Understand terminology
6-
description: "Learn some core terminology you'll need to understand when writing code to create a web page."
7-
ms.date: 05/08/2024
6+
description: "Learn some core terminology you need to understand when writing code to create a web page."
7+
ms.date: 04/25/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-azure/build-first-html-webpage/3-explore-core-html.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Explore core HTML
44
metadata:
55
title: Explore core HTML
66
description: "Explore some core concepts of Hypertext Markup Language (HTML)."
7-
ms.date: 05/08/2024
7+
ms.date: 04/25/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-azure/build-first-html-webpage/4-exercise-create-html-page.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Exercise - Create an HTML page
44
metadata:
55
title: Exercise - Create an HTML page
66
description: "Begin creating a web page for your resume."
7-
ms.date: 05/08/2024
7+
ms.date: 04/25/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-azure/build-first-html-webpage/6-research-links-lists-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Research links, lists, and images
44
metadata:
55
title: Research links, lists, and images
66
description: "Learn how to include links, lists, and images in your web page."
7-
ms.date: 05/08/2024
7+
ms.date: 04/25/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-azure/build-first-html-webpage/7-exercise-lists-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Exercise - Lists and links
44
metadata:
55
title: Exercise - Lists and links
66
description: "Add information to your resume using lists and links."
7-
ms.date: 05/08/2024
7+
ms.date: 04/25/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-azure/build-first-html-webpage/8-knowledge-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Module assessment
44
metadata:
55
title: Module assessment
66
description: "Check what you learn in this module."
7-
ms.date: 05/08/2024
7+
ms.date: 04/25/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit
@@ -34,7 +34,7 @@ quiz:
3434
explanation: "Incorrect. The style tag or a stylesheet enables styling in HTML."
3535
- content: "Creates a bulleted list"
3636
isCorrect: false
37-
explanation: "Incorrect. Bulleted lists are created by the `<ul>` tag."
37+
explanation: "Incorrect. Bulleted lists use the `<ul>` tag."
3838
- content: "Allows a user to navigate to other things"
3939
isCorrect: true
4040
explanation: "Correct. A hyperlink points to other content on the website or the internet."

learn-pr/wwl-azure/build-first-html-webpage/9-summary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Summary
44
metadata:
55
title: Summary
66
description: "Summary of the module."
7-
ms.date: 05/08/2024
7+
ms.date: 04/25/2025
88
author: wwlpublish
99
ms.author: eric
1010
ms.topic: unit

learn-pr/wwl-azure/build-first-html-webpage/includes/1-introduction.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
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.
22

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.
44

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.
66

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.
88

9-
By the end of this module, you'll be able to:
9+
By the end of this module, you're able to:
1010

1111
- Explain what a webpage and website are
1212
- Highlight the differences between HTML, CSS, and JavaScript

learn-pr/wwl-azure/build-first-html-webpage/includes/2-understand-terminology.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ You'll soon be writing code to create a web page.
22

33
:::image type="content" source="../media/html-to-webpage.png" alt-text="Diagram showing HTML Code and the resulting webpage for an example resume.":::
44

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.
66

77
## Web Pages and Websites
88

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.
1010

1111
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.
1212

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.
1414

1515
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.
1616

@@ -34,11 +34,11 @@ The "strong" tags tell the browser that the text in between should be bold. It w
3434

3535
### CSS
3636

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.
3838

3939
### JavaScript
4040

4141
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.
4242

4343
> [!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

Comments
 (0)