Chapter 2 - Creating Webpage Template with HTML5

Almocademy
1 Aug 202344:45

Summary

TLDRThis video lesson focuses on building a web page template using HTML5. It guides viewers through understanding website file management, utilizing HTML5 semantic elements, and crafting a web page structure. The tutorial covers creating a homepage, validating web documents, and applying unique content. Viewers are walked through designing a Fitness Club website, including wireframing, file organization, and integrating HTML5 elements to establish a basic template, concluding with a homepage creation and validation using the W3C validator.

Takeaways

  • ๐Ÿ“ The video is a lesson on building a web page template using HTML5, focusing on the structure, elements, and content creation.
  • ๐ŸŒ It emphasizes the importance of website file management and the organization of various file types like HTML, CSS, images, and media.
  • ๐Ÿ“‘ HTML5 semantic elements are crucial for defining the structure of web pages, including 'header', 'nav', 'main', 'footer', 'section', 'article', and 'aside'.
  • ๐ŸŽจ The lesson discusses the design process for a 'Forward Fitness Club' website, including the purpose, target audience, and accessibility considerations.
  • ๐Ÿ› ๏ธ The process of creating a web page template involves crafting an HTML document, integrating HTML5 elements, and transforming it into a reusable template.
  • ๐Ÿ–Œ๏ธ The video provides a checklist for designing a website, which includes planning, wireframing, and choosing appropriate graphics, colors, and typography.
  • ๐Ÿ” The significance of web document validation is highlighted, ensuring that the HTML code is error-free and follows W3C standards.
  • ๐Ÿ“ The video includes a step-by-step guide to creating a basic HTML template for a fitness club website, including adding navigation links and footer content.
  • ๐ŸŒ It explains the use of HTML entities for special characters that are not recognized by HTML, such as copyright symbols and ampersands.
  • ๐Ÿ”‘ The video mentions the use of comments in HTML to add notes that won't appear on the webpage but are useful for developers.
  • ๐Ÿ” The final takeaway is about the importance of validating the HTML document using the W3C validator to ensure it meets web standards and is error-free.

Q & A

  • What is the main topic of this video lesson?

    -The main topic of this video lesson is building a web page template using HTML5.

  • What are the objectives of the chapter for the lecture?

    -The objectives are to understand website file management, HTML5 semantic elements, web page structure, the process of creating a web page template, adding static content, the significance of web document validation, and the application of unique content to a web page.

  • What is the purpose of the Forward Fitness Club website mentioned in the script?

    -The purpose of the Forward Fitness Club website is to promote fitness services and gain new clients, facilitating a healthy lifestyle and helping clients meet their fitness and nutrition goals.

  • Who is the target audience for the Forward Fitness Club website?

    -The target audience for the Forward Fitness Club website are adults between the ages of 18 and 35 within the local community.

  • What is the significance of using HTML5 semantic elements when creating a web page template?

    -HTML5 semantic elements are significant because they define the structure of the web page and outline specific sections, making the content more accessible and understandable for both users and search engines.

  • What are the initial steps in designing a website according to the script?

    -The initial steps include crafting an HTML document that forms the basic structure of the web page, integrating HTML5 elements to outline specific sections, and transforming the HTML document into a template that can be used as a pattern for other pages on the site.

  • What is the importance of web document validation?

    -Web document validation is important as it verifies the validity of the HTML code, confirming that all code is correct and follows the established rules set by the W3C organization, ensuring the website's compatibility and accessibility.

  • How should a website be organized in terms of file management?

    -A website should be organized systematically with a main folder and subfolders for different file types such as HTML, CSS, images, media, audio, video, and scripts to keep the site maintainable and scalable.

  • What are some of the HTML5 semantic elements mentioned in the script?

    -Some of the HTML5 semantic elements mentioned are header, nav, main, footer, section, article, and aside.

  • What is the role of the 'nav' element in an HTML5 document?

    -The 'nav' element indicates the start and end of a navigation area within the web page, containing hyperlinks to other web pages within the website.

  • Can you explain the use of symbol entities in HTML5 as mentioned in the script?

    -Symbol entities in HTML5 are used to insert special characters or symbols that are not recognized by HTML. They are represented by entity names or numbers and are used to ensure that characters like the copyright sign, ampersand, and less than or greater than signs are displayed correctly in the web page.

Outlines

00:00

๐Ÿ“ Introduction to HTML5 Web Page Template Building

This paragraph introduces the video lesson on constructing a web page template using HTML5. It sets the stage for the chapter's objectives, which include understanding website file management, HTML5 semantic elements, web page structure, and the creation of a web page template with static content. The importance of web document validation and the incorporation of unique content into a web page are also highlighted. The lecture and lab activities are outlined, with the latter focusing on applying HTML5 semantic elements to create, validate, and design a homepage for an HTML template.

05:02

๐ŸŽฏ Website Design Checklist and Planning

The second paragraph delves into the meticulous process of website design, emphasizing the need for a comprehensive plan that outlines the website's purpose, target audience, and other essential elements. It mentions a sample checklist for a Forward Fitness Club website, detailing the site's mission, target demographic, and the importance of multi-platform display. The paragraph also covers the initial structure of the website, consisting of five pages with a hierarchical layout, and touches on aspects like graphics, color schemes, typography, and accessibility.

10:03

๐ŸŒ Website File Management and HTML5 Semantic Elements

This paragraph discusses the importance of systematic file organization for websites, which may consist of various file types such as HTML, CSS, images, and media files. It provides a step-by-step guide on creating folders and subfolders for a structured file management system. Furthermore, it explains the use of HTML5 semantic elements to define the structure of a web page, including 'header', 'nav', 'main', 'footer', 'section', 'article', and 'aside', and their respective roles in webpage design.

15:04

๐Ÿ‹๏ธโ€โ™‚๏ธ Designing a Fitness Club Website Template

The fourth paragraph focuses on the practical application of the discussed concepts by designing a template for a fitness club website. It outlines the steps to create a basic web page template, including the use of HTML5 structural elements within the body tag. The paragraph provides a detailed explanation of how to integrate the header, navigation, main content, and footer areas into the template, creating a foundational structure for the website.

20:05

๐Ÿ“˜ Understanding Heading Elements and Symbol Entities in HTML

This paragraph explains the use of heading elements in HTML to signify the beginning of new topics and to provide structure to the content. It distinguishes between heading levels, ranging from H1 to H6, and their role in helping users quickly navigate through the webpage. Additionally, it covers the use of symbol entities for characters not recognized by HTML, such as the copyright symbol and other special characters, and provides examples of how to correctly implement them.

25:10

๐Ÿ” Validating HTML Documents for Accuracy

The sixth paragraph highlights the importance of validating HTML documents to ensure that the code is error-free and adheres to the standards set by the W3C organization. It describes the process of validating an HTML file and the benefits of incorporating validation as part of web page testing. The paragraph also provides a practical example of how to validate a document using notepad and a web browser.

30:11

๐Ÿ› ๏ธ Crafting the Forward Fitness Club Homepage

This paragraph provides a detailed walkthrough of creating the homepage for the Forward Fitness Club website. It includes the process of adding header elements, navigation links, main content with welcoming statements and promotional information, and a footer with copyright and creator credits. The paragraph emphasizes the importance of clean coding and real-time output checking to ensure the webpage's functionality and visual appeal.

35:15

๐Ÿ“ Organizing Website Files and Submitting Assignments

The eighth paragraph discusses the organization of website files and how to submit the completed web page template as part of the course assignment. It guides viewers on how to access and organize their folders, save their work, and submit a screenshot of their completed project. The paragraph concludes with instructions on how to use the template for future chapters and the importance of maintaining an organized file structure.

40:18

๐Ÿ”š Chapter Conclusion and Website Validation

The final paragraph summarizes the chapter's key learning points, which include preparing a website with organized folders, using HTML5 structural elements to create a web page template, validating the template, and developing a homepage. It also guides viewers on how to validate their website using the W3C validator and correct any errors before concluding the video with a reminder to stay safe and a sign-off until the next lesson.

Mindmap

Keywords

๐Ÿ’กHTML5

HTML5 is the fifth major revision of the Hypertext Markup Language (HTML), which is the standard markup language for creating web pages and web applications. It includes new elements, attributes, and behaviors that enable a more interactive and dynamic user experience. In the video, HTML5 is used to build a web page template, emphasizing the use of semantic elements to structure the content, such as header, nav, main, and footer.

๐Ÿ’กWeb Page Template

A web page template is a pre-designed layout that serves as a blueprint for creating web pages. It typically includes standardized sections like headers, navigation menus, main content areas, and footers. In the video, the process of creating a web page template using HTML5 is discussed, highlighting how it can be used as a pattern for other pages on a website.

๐Ÿ’กSemantic Elements

Semantic elements in HTML5 are tags that provide meaning to the web content. They help define the structure of a web page in a way that is more descriptive and accessible. Examples include 'header', 'nav', 'main', 'section', 'article', and 'aside'. The video emphasizes the importance of using these elements to outline specific sections of a web page, enhancing both the structure and accessibility.

๐Ÿ’กWebsite File Management

Website file management refers to the organization and maintenance of the various files that make up a website, including HTML, CSS, JavaScript, images, and media files. The video discusses the importance of systematically organizing these files into folders and subfolders to maintain a structured and efficient workflow for web development.

๐Ÿ’กWeb Document Validation

Web document validation is the process of checking the markup language (like HTML) against a set of rules to ensure that it is well-formed and adheres to the standards set by organizations like the World Wide Web Consortium (W3C). The video mentions the significance of validating HTML documents to confirm that the code is correct and follows established rules, ensuring a higher level of quality and compatibility.

๐Ÿ’กWireframe

A wireframe is a visual guide that represents the structure and layout of a web page. It is a simplified, schematic representation that outlines where different elements such as text, images, and navigation will be placed. In the video, designing a website involves creating a wireframe to plan the layout of the web pages, including the header, navigation area, main content, and footer.

๐Ÿ’กNavigation Area

The navigation area of a web page is the section that contains links to other pages or sections within the website. It is crucial for providing users with an easy way to navigate through the site. The video script discusses the inclusion of a navigation area in the web page template, typically positioned immediately after the header.

๐Ÿ’กMain Content Area

The main content area is the central part of a web page where the primary information or content is displayed. It is distinguished from other areas like headers, footers, and navigation bars. In the video, the 'main' semantic element in HTML5 is used to define this area, ensuring that it contains the primary content of the web page.

๐Ÿ’กFooter Area

The footer area of a web page is typically located at the bottom and contains supplementary information such as copyright notices, contact information, and links to privacy policies. The video script mentions the footer area as part of the web page template, indicating that it contains the footer content of the web page.

๐Ÿ’กSymbol Entities

Symbol entities in HTML are used to represent characters that are not directly accessible from the keyboard or are reserved in HTML. They are denoted by a name or a number preceded by '&' and followed by ';'. The video discusses the use of symbol entities like '&' for ampersand and '<' for less than, which are essential for correctly displaying certain characters in web pages.

๐Ÿ’กHeading Elements

Heading elements in HTML, denoted by 'h1' to 'h6', are used to define headings and subheadings in a document. They are important for structuring content and making it easier for users to scan and understand the page layout. The video script includes the use of heading elements, such as 'h1', to provide a title or heading before paragraphs of text or sections of a page.

Highlights

Introduction to building a web page template using HTML5.

Understanding website file management and HTML5 semantic elements.

Objective of the chapter: creating a web page template, adding static content, and validating web documents.

Discussion on the significance of web document validation.

Application of unique content to a web page.

Designing a website using HTML5 semantics and creating a web page template.

Creating a home page and validating HTML documents.

Checklist for designing a website and its importance in the planning process.

Crafting an HTML document as the basic structure of a web page.

Integration of HTML5 elements to outline specific sections of the web page.

Transforming an HTML document into a template for other pages on the site.

Sample website plan for a Forward Fitness Club, detailing purpose, target audience, and multi-platform display.

Importance of a hierarchical structure in website design with links to the home page.

Design elements like graphics, color, typography, and accessibility attributes.

Basic template code for a simple web page with header, navigation, main content, and footer.

Importance of systematic file organization in website management.

Using HTML5 semantic elements like header, nav, main, and footer to define the structure of a web page.

Explanation of heading elements and their role in indicating new topics on a web page.

Use of symbol entities in HTML and their significance in displaying special characters.

Process of validating an HTML document to ensure code correctness and adherence to W3C standards.

Steps for creating and validating an HTML document, including naming conventions and file management.

Conclusion of the chapter summarizing the learned skills in preparing a website and creating a web page template.

Transcripts

play00:12

[Music]

play00:16

hello everyone good morning good

play00:18

afternoon good evening or whatever time

play00:20

in the world you are watching this video

play00:22

so welcome to this another video Lesson

play00:25

for chapter two and it talks about

play00:27

building a web page template using HTML5

play00:31

so to give you a heads up

play00:34

uh this discussion will let you follow

play00:36

and produce an output as we go along

play00:39

with the coding part of this discussion

play00:41

process

play00:42

so

play00:44

or the objective of this chapter so for

play00:48

your lecture you're going to understand

play00:50

the website file management

play00:54

HTML5 semantic elements web page

play00:57

structure the process of creating a web

play00:59

page template and adding static content

play01:02

the significance of web document

play01:05

validation and the application of unique

play01:07

content to a web page and for your lab

play01:10

of course we are going to apply the

play01:12

knowledge that you have learned from the

play01:13

lecture and you're going to apply HTML5

play01:16

semantic elements and simple codes

play01:19

creating and validating an HTML template

play01:22

designing a semantic wireframe and

play01:25

developing a unique homepage for an HTML

play01:29

template and for us to cover those

play01:32

objectives we are going to have the

play01:34

following topics so first we're going to

play01:37

design a we're going to do designing a

play01:39

website using HTML5 semantics creating a

play01:44

web page template using simple entities

play01:47

creating a home page and validating your

play01:50

HTML documents all right

play01:53

so last time we have talked about the

play01:57

the checklist for designing a website so

play02:00

I have a sample here so again in case

play02:04

you have in case you have already

play02:06

forgotten so this checklist material for

play02:10

a web or the website plan so this

play02:13

material explores the fundamental of web

play02:15

design and development providing

play02:18

Essential Knowledge for a budding web

play02:21

designers so designing a website is

play02:25

saying as I I have mentioned last time

play02:29

it is a meticulous process that demands

play02:32

time

play02:33

planning and deep understanding of the

play02:36

clients or stakeholders needs so this

play02:39

process starts with a comprehensive plan

play02:42

detailing the purpose of the website and

play02:46

its target audience so one of the

play02:49

initial steps in this process is

play02:51

crafting an HTML document okay which

play02:55

forms the basic structure of the web

play02:58

page so HTML5 elements are then

play03:01

integrated to outline specific sections

play03:05

of the web page

play03:07

and then this HTML document can be

play03:10

transformed into a template and

play03:15

it should be redesigned

play03:18

a web page used as a pattern for other

play03:21

pages on the site so the focus of this

play03:26

discussion will be on the

play03:28

building a web page template using HTML5

play03:31

and

play03:32

subsequently creating a home page from

play03:35

this template okay so I read we already

play03:39

have a sample here so remember your

play03:42

checklist last time

play03:45

it is already filled up

play03:48

um

play03:49

in this

play03:51

um

play03:52

web page or website that we are going to

play03:55

create so this one is for a forward

play03:58

Fitness club website plan or it's a gym

play04:01

okay so

play04:04

then for this particular website as we

play04:09

go on with the different chapters sonagi

play04:11

enhance

play04:13

and the plan is already made here so

play04:17

let's have first the purpose of the

play04:19

website

play04:21

okay so it says seared the purpose of

play04:25

the website is to promote uh Fitness

play04:28

services and gain new clients so the

play04:31

forward Fitness club mission

play04:34

is to facilitate a healthy lifestyle and

play04:37

help our clients meet their Fitness and

play04:39

Nutrition goals and then

play04:42

website no so very firm

play04:46

um

play04:48

achievable all right and then for your

play04:50

target audience

play04:53

so the forward Fitness club customers

play04:55

are adults between

play04:57

the ages 18 and 15 within the local

play05:02

community so

play05:04

all right this is just a general a

play05:07

general plan a same local community

play05:10

but in your case if you are going to

play05:12

create your site you have to mention

play05:14

your local community and then for the

play05:17

multi-platform display

play05:19

so forward Fitness club recognizes the

play05:22

growth in smartphone and tablet usage so

play05:26

it should not be viewable only for

play05:29

desktop but also with other devices so

play05:33

you know a smartphone and tablet usage

play05:35

and once a a single website that

play05:39

provides an optimal viewing experience

play05:41

regardless of the of whether visitors

play05:45

are using a desktop laptop tablet or a

play05:49

smartphone and then for the wireframe

play05:52

and sitemap so dito the initial website

play05:56

will consist of five web pages so limang

play06:00

web pages

play06:02

in the future okay arranged in a

play06:05

hierarchical

play06:07

structure or hierarchical structure

play06:09

remember you have different uh

play06:11

structures for creating website right

play06:13

but this one younger gamit indito is

play06:16

Young hierarchical structure with links

play06:18

to the home page on every page so each

play06:21

web page will include a heading area

play06:24

navigation area your main content area

play06:28

and footer area

play06:32

and then for your graphics uh forward

play06:35

Fitness club wants to

play06:38

display its fitness equipment and Logo

play06:43

to help with local branding so photos of

play06:46

the facility members and staff will

play06:49

increase visual appeal and for your

play06:53

color a simple Lang Tayo so forward

play06:56

Fitness club wants to use black and

play06:59

white as the primary colors for a clean

play07:02

sophisticated look

play07:04

okay and then for the typography

play07:06

actually this is a color

play07:09

um

play07:10

you have to mention the different colors

play07:13

used

play07:16

schemes okay so ion if necessary you

play07:20

need to provide the color codes HTML

play07:27

um but very specific encoder you have to

play07:28

mention the RGB or the hex code or my

play07:32

hsl and okay so for the future neon and

play07:37

then for your typography

play07:40

um to make the content easy to read

play07:43

the website will use a serif font style

play07:46

for paragraphs list and other body body

play07:50

content while providing contrast by

play07:53

using a sensory font style for

play07:56

navigation links and headings okay

play08:03

all right and then for your

play08:06

accessibility so this one standard so

play08:10

standard accessibility attributes such

play08:13

as alternative text for graphics will be

play08:15

used to address uh

play08:18

address accessibility all right

play08:22

then okay

play08:27

for the preline plan

play08:31

all right

play08:33

basic template

play08:37

so this is the code and this will be the

play08:40

etomunan simple template

play08:45

web page all right and then so earlier

play08:50

the site map was mentioned so at Insight

play08:54

not nothing okay so as mentioned kanina

play08:58

it will have five web pages to build the

play09:03

website so what are those five uh

play09:06

we're beaches so you have the home page

play09:09

the about us the glasses nutrition page

play09:12

and con contact as a pitch okay so for

play09:18

the home page

play09:20

it will introduce the fitness center and

play09:23

its mission statement okay and then for

play09:26

about us page it will showcase the

play09:28

facilities equipment and services for

play09:31

the classes page

play09:33

um

play09:35

chapter today

play09:38

all right

play09:40

[Music]

play09:42

and then

play09:46

and then

play09:48

after your site map

play09:51

it will be followed by your wireframe so

play09:54

uh before no if you're going to create a

play09:58

website

play10:01

um it's going to be

play10:03

videos or very time consuming for you to

play10:06

finish your website

play10:08

so I have a sample here so 18 wireframe

play10:12

so satastian in the header you have your

play10:15

logo your links this will be your

play10:18

navigation area the image banner and the

play10:21

new paragraphs here and images and then

play10:25

the footer okay for a basic web page

play10:28

template

play10:30

from header to footer okay

play10:36

[Music]

play10:40

next

play10:43

um so important renewing file management

play10:48

folder new so websites are uh websites

play10:53

actually use uh several types of files

play10:57

uh that includes HTML files similar

play11:00

image files media uh sometimes similar

play11:04

audio and video files by an in the CSS

play11:06

files so even a simple website

play11:11

even a simple website might use hundreds

play11:14

of files okay websites hundreds of files

play11:19

therefore each site must follow a

play11:22

systematic method to organize its files

play11:24

so before you begin to create your first

play11:27

HTML page

play11:30

start by creating a folder and

play11:32

subfolders to contain and organize your

play11:35

website files as shown in this figure

play11:41

website new Young Fitness Club kanina in

play11:45

forward Fitness club so uh

play11:51

okay

play11:56

files okay that is not the organized way

play12:00

to do it so for you to be organized

play12:05

um after this folder also called uh your

play12:09

main folder the other term is the root

play12:12

folder Okay so

play12:15

the apartment folder for your CSS files

play12:17

for your images for your media audio

play12:22

videos

play12:24

Fitness site my audio video okay and

play12:27

then young scripts

play12:29

JavaScript so

play12:32

okay

play12:40

next

play12:44

now

play12:46

um so this one is using HTML5 semantic

play12:49

elements so as you learned in chapter

play12:51

one uh you already begin uh creating a

play12:56

new HTML document by adding the basic

play12:59

required HTML elements to it and debug

play13:03

you started with doctype HTML and

play13:08

body elements all right so within the

play13:12

body element

play13:14

um you next at HTML elements that Define

play13:17

the structure of the page

play13:19

so inside the body you will have this

play13:22

different semantic elements header

play13:32

um that indicates the Header information

play13:33

of the web page so header content

play13:38

typically consists of a business name or

play13:41

logo and is commonly positioned

play13:45

immediately after the opening by the tag

play13:47

so sababino open body tag now

play13:51

okay and then next by the way

play13:56

it's a web page template all right and

play14:00

then after the header that is followed

play14:01

by the nav so nav is short for

play14:04

navigation so this indicates the start

play14:07

and end of a navigation area within the

play14:10

web page

play14:11

uh the nav element

play14:13

contains hyperlinks

play14:17

hyperlinks to other web pages within a

play14:20

website and is commonly positioned

play14:21

immediately after the closing

play14:24

header back

play14:27

okay

play14:32

next for the mean Main

play14:37

so this this indicates the start and end

play14:40

of the main content area of a web page

play14:43

so my main contents

play14:46

open and close main tags so it contains

play14:50

the primary content of the web page and

play14:52

then only one main element can appear on

play14:55

a page

play14:58

all right and then that is followed by

play15:01

the footer

play15:03

Sox

play15:06

which indicates the start and end

play15:09

of the footer area of a web page and it

play15:12

contains the filter content of the web

play15:15

page

play15:16

okay and then

play15:18

you can also see there yamanga section

play15:21

uh the section elements

play15:24

so the section area of a web page sodito

play15:28

it contains a specific group being of

play15:32

content of a web page

play15:36

you can create other sections Okay small

play15:39

squares

play15:42

websites my picture that was made

play15:45

description

play15:47

that is a section okay a section of a

play15:50

web page and then you have an article

play15:55

this indicates the start and end of an

play15:58

article area of a web page so dito it

play16:01

contains such as four rooms or plug

play16:05

posts okay

play16:08

website you know other readings other

play16:11

recommendations so those are

play16:14

placed inside the open and closed

play16:17

article element or tag and then finally

play16:21

you have your aside

play16:23

so it indicates the start and end of an

play16:26

aside area of a web page so uh what is

play16:30

contained here it contains information

play16:32

about nearby content and is typically

play16:35

displayed as a sidebar

play16:38

okay

play16:41

[Music]

play16:43

usually you know typically it's a left

play16:45

side known web page okay but for now

play16:48

later

play16:52

nav main footer

play16:56

okay

play17:01

um

play17:06

so we will have the of course the

play17:09

Declaration sorry

play17:11

the Declaration document beginning with

play17:13

the dog type

play17:15

HTML head and the body

play17:19

and then inside the body as mentioned

play17:21

kanina it should have header NAB mean

play17:24

and footer okay document

play17:30

all right

play17:32

and then for the

play17:37

um or other elements

play17:39

creating a web page we also have your

play17:42

heading elements heading is different

play17:44

from Pandora it's heading so you use

play17:49

heading elements to provide a title or

play17:52

heading before a paragraph of text or

play17:55

section of a page so headings indicate

play17:58

that a new topic is starting and

play18:01

typically

play18:03

um identify or summarize the topic so

play18:07

just like in a book

play18:14

[Music]

play18:17

that is the heading so on a web page

play18:21

heading appears in a large larger font

play18:24

size than normal text

play18:27

it should make it easy for users to

play18:30

quickly scan the page and identify its

play18:34

section so this figure here that you see

play18:37

on the screen

play18:39

um

play18:40

it shows example of heading elements of

play18:44

Intel's website okay the text in blue

play18:47

heading

play18:50

adding adding heading element before the

play18:54

paragraph okay

play18:57

so heading sizes or

play19:01

levels one I run from one

play19:06

uh one being the largest

play19:09

and iron and six

play19:12

are the subheadings okay

play19:15

so the start tag of heading is

play19:21

H1 H2 H6 so well on H7 H7

play19:33

and so on all right

play19:42

um

play19:43

in the upcoming steps you

play19:47

will insert the head heading element

play19:49

with the header element on the template

play19:52

file for the Fitness website later

play19:56

and then

play20:01

um

play20:04

symbol entities are not all characters

play20:07

are

play20:11

um not all characters are recognized by

play20:13

HTML

play20:15

5. young literally

play20:17

Ampersand greater than less than sign

play20:21

sometimes when you look at them in the

play20:24

document in this appear as it is okay so

play20:28

what we do for the symbol entities we

play20:30

use the The Entity name or entity number

play20:33

okay so when adding content to a web web

play20:38

page you often need to insert symbol or

play20:42

characters like human copyright sign

play20:44

register trademark currencies less than

play20:48

greater than sine what else number signs

play20:52

or

play21:00

foreign

play21:06

Copyright symbol so you have to start

play21:10

with end

play21:12

just like here and and it should end

play21:15

with a semicolon okay semicolon no not

play21:19

colon so

play21:22

Copyright symbol

play21:25

you use n copy

play21:28

all right

play21:29

for Ampersand use end amp semicolon

play21:35

um actually

play21:36

entity name with the entity number

play21:39

sometimes it's difficult to remember

play21:42

them

play21:45

for other characters

play21:50

um like Diamond Stars

play21:54

entity name but they have a decimal

play21:58

number and a hex number

play22:00

all right so more on this uh if you want

play22:04

to see more you can go to w3schools.com

play22:09

reference site and you can check there

play22:12

the other symbols that you can use

play22:16

okay

play22:18

and now assuming that you have already

play22:21

created your HTML documents

play22:24

um

play22:29

compared to other programming languages

play22:35

right but with HTML you can see

play22:40

the results already sub browser however

play22:45

how do you know if you have committed

play22:47

mistakes or

play22:50

um

play22:53

after creating an HTML file you validate

play22:57

the document to verify the validity of

play22:59

the HTML code when you validate an HTML

play23:03

document you confirm that all of the

play23:05

code is correct and follows the

play23:08

established Rules by the remember young

play23:11

w3c organization that

play23:14

um

play23:16

organization that validates websites

play23:19

debug so

play23:23

um

play23:24

again that's the organization that sets

play23:26

the standards for HTML so the w3c

play23:30

recommends validating all HTML documents

play23:33

and making validation part of your web

play23:38

page testing so much

play23:43

foreign

play23:58

I have already opened my notepad plus

play24:01

plus here

play24:04

and

play24:05

the browser where we are going to view

play24:08

your web page later

play24:13

okay so in this case uh Naseebo name

play24:16

file

play24:18

somewhere in my PC as you can see

play24:22

when you name your when you name this

play24:25

HTML document you name it as template

play24:29

okay template.html

play24:32

alright

play24:35

the HTML head and body

play24:41

okay

play24:42

so in this uh this is the part where you

play24:44

will follow this I don't know this video

play24:46

by by coding

play24:52

canvas

play24:54

for you guys okay

play25:01

okay

play25:03

um video

play25:10

okay

play25:11

so

play25:13

uh inside the head uh by the way this is

play25:16

the comment tag for html capagyan text

play25:20

green you will not see this inside the

play25:23

web page okay

play25:26

so I kindly indicate your full name for

play25:30

example I'm going to put mine

play25:35

is uh

play25:37

WD 2010

play25:44

[Music]

play25:46

um

play25:50

and then the activity is

play25:56

a fitness club

play26:02

template and then the date when you have

play26:06

created this

play26:09

so July

play26:11

foreign

play26:19

2023

play26:22

okay and then save it by the way

play26:26

so when you see this in red uh color it

play26:30

means Independence so when I run it

play26:33

but when I when you save it it will turn

play26:36

into blue

play26:38

berries

play26:41

and then don't forget your title

play26:44

our title will be forward

play26:49

Fitness club

play27:01

and then

play27:03

you as I've mentioned before seban

play27:06

classes

play27:11

but this title is for your tab name

play27:16

okay

play27:18

[Music]

play27:20

next let us now proceed with the body

play27:26

um so for your body we need

play27:30

we need header

play27:37

header

play27:38

and

play27:41

apples followed by after the header

play27:44

yes you got it right it's the nav

play27:51

followed by your mean

play28:02

s

play28:05

and of course your footer

play28:09

[Music]

play28:13

okay I am so for the header

play28:20

so for the header we put here the

play28:25

your H1

play28:27

okay

play28:29

so check nothing

play28:31

again

play28:32

by the way Ctrl s and then sub browser

play28:35

F5 paramabilis and then for your

play28:38

navigation

play28:40

so

play28:43

um for the navigations links

play28:47

uh

play28:55

so here we need the Home

play28:59

tapos

play29:01

about us

play29:04

about us

play29:09

about us

play29:12

followed by human being slides

play29:16

uh before nutrition with the glasses

play29:21

and then contact us

play29:26

and check nothing

play29:29

no

play29:32

now uh let's make this kite in a simple

play29:34

web page launcher we need to make it

play29:37

stylish okay so gamitine and character

play29:41

entities so end

play29:43

and B SP

play29:46

that means no breaking space

play29:57

all right so no breaking space is an

play30:00

invisible space And Then followed by

play30:06

um

play30:10

number nine four seven five

play30:14

semicolon

play30:16

and then another and bsp

play30:19

[Music]

play30:28

yeah

play30:31

space between home and the

play30:34

the This Bar

play30:36

okay

play30:38

c9475 I'm just going to copy paste this

play30:44

okay

play30:44

[Music]

play30:45

apostito

play30:49

and Tito

play30:53

na 10 output

play30:54

okay

play30:56

somehow stylishness

play31:00

all right

play31:01

so make sure our code is clean as we go

play31:04

along

play31:12

and then for the mean

play31:15

I think

play31:24

so let's put a paragraph tag open p and

play31:30

then close parandita malito later

play31:33

we need one two three three of this

play31:42

and then inside it

play31:43

is

play31:45

welcome statement no

play31:49

um here

play31:52

welcome to forward Fitness club our

play31:55

devices

play31:57

so our mission is to help out our

play32:00

clients meet their Fitness and Nutrition

play32:02

goals

play32:06

uh very nice man and then next paragraph

play32:11

output

play32:13

from time to time check your output

play32:16

and then

play32:20

your next statement

play32:22

foreign

play32:24

[Music]

play32:28

so this one talks about if you have

play32:31

struggled with getting healthy

play32:34

only spelling getting healthy and need

play32:36

the motivation and resources to make a

play32:38

healthy lifestyle change contact us

play32:40

today our facility includes

play32:42

state-of-the-art equipment convenient

play32:45

group training classes and nutrition

play32:47

tips and information

play32:50

wrong spelling is wrong information to

play32:53

keep you healthy

play32:55

again

play32:59

and

play33:05

hmm

play33:07

and then in the last paragraph

play33:11

s

play33:22

and you can post them and while doing

play33:25

this you can pause the video and then

play33:29

for our last paragraph

play33:36

with we provide a free one-week

play33:39

membership to experience the benefits of

play33:41

our equipment and facility so this one

play33:45

this one week trial gives you complete

play33:47

access to our equipment training classes

play33:50

and nutrition planning

play33:52

contact us

play33:55

today to start your free trial

play33:59

opening statements inviting but

play34:03

okay so that's the main

play34:15

and then lastly for the footer

play34:23

um

play34:24

or the footer

play34:27

you put this

play34:30

so

play34:32

um

play34:34

copyright sign so copyright 2023 All

play34:38

Rights Reserved and then you can even

play34:40

put here created by

play34:45

your name is

play34:48

and then in website name

play34:53

and

play34:58

then second output

play35:02

template

play35:06

our FM basic template this is for the

play35:09

home page now so in the future

play35:15

web page which will we will be creating

play35:18

uh for the next chapters okay that's why

play35:21

I want you to see this

play35:25

as we go on with the next chapters

play35:28

website

play35:32

okay so you learn for I know for today's

play35:37

video

play35:39

zoom out kunan

play35:47

and so foreign

play35:56

[Music]

play36:10

so how are you going to submit this

play36:13

after watching this video

play36:20

this time

play36:22

um

play36:34

driving folders new so I hope you

play36:38

already have your

play36:40

your ways to access your folder

play36:44

schools

play36:52

all right

play36:55

okay

play36:58

so

play37:01

full during you let's see

play37:29

sampling folders

play37:37

but I belong

play37:40

Okay so

play37:45

really midterm finals

play37:50

Ayan so how are you going to submit this

play37:54

screenshot Lang so screenshot

play37:58

a screenshot YouTube

play38:06

foreign

play38:11

that's why you have your folders

play38:15

[Music]

play38:17

and then

play38:20

so inside your Berlin

play38:31

and so on

play38:36

Hanson 2

play38:45

um

play38:49

um

play38:50

template

play38:53

okay

play38:56

see

play39:07

um

play39:09

video

play39:11

sorry about that

play39:21

so for HO2 L again you see

play39:24

template

play39:26

name

play39:29

all right

play39:38

zip you can just from your computer you

play39:41

can just drag your files uh Tunes prelim

play39:45

folder

play39:46

okay so that's about this chapter

play39:51

so

play39:54

let's conclude this chapter on billison

play39:58

um so for the chapter some summary in

play40:01

this chapter you you learned how to

play40:04

prepare a website by organizing folders

play40:06

for the web page files using HTML5 uh

play40:12

structural elements to create a web page

play40:14

template validating the template and

play40:17

then creating the home page so the items

play40:20

are listed

play40:21

below

play40:24

so the items listed are

play40:28

iron attention

play40:31

okay

play40:33

we cannot we cannot summarize the

play40:37

chapter without validating our website

play40:42

no

play40:45

Panama validate go to

play40:49

okay it's a Google search new Young W3 C

play40:54

validator

play40:59

hmm

play41:01

that was in first result click New

play41:03

London

play41:06

um

play41:09

this is called the validator.w3.org

play41:13

document

play41:19

[Music]

play41:22

open with notepad plus plus

play41:27

um you can actually I know there are

play41:29

three ways to validate your documents

play41:32

here you can validate by URL

play41:36

in our case

play41:40

um you can validate by file upload

play41:43

or validate by direct inputing direct

play41:46

input code

play41:50

scanning and

play41:56

tapos check

play41:59

okay

play42:01

spelling

play42:04

[Music]

play42:05

okay so in this case I only have two

play42:07

errors

play42:09

okay

play42:13

there

play42:17

foreign

play42:21

[Music]

play42:24

foreign

play42:36

and then check again

play42:41

but in this case uh here trailing slash

play42:46

on void elements has no effect and

play42:48

interacts badly with unquoted attribute

play42:50

values anyway

play42:55

so so far okay

play43:00

okay

play43:12

okay

play43:18

um

play43:22

[Music]

play43:31

nutrition planning

play43:37

foreign

play44:15

all right so

play44:21

um

play44:22

I am going to end this video now so with

play44:25

all that things been discussed uh thank

play44:27

you all for watching and I'll see you on

play44:30

the next video Lesson I'll see you in

play44:32

the lab I'll see you everywhere anywhere

play44:34

in school so keep safe everyone and

play44:38

God bless

play44:41

foreign

Rate This
โ˜…
โ˜…
โ˜…
โ˜…
โ˜…

5.0 / 5 (0 votes)

Related Tags
Web DevelopmentHTML5Web PageTemplate DesignContent CreationWebsite ValidationSEO BasicsUser ExperienceFitness ClubWeb Structure