Tik tok videos
125 subscribers
8 photos
3 videos
6 files
If you want to make your own app this is the right place for you All about programming new technological and hacking news quizzes on JavaScript , html ,
, java , ruby , c++ , java and python core
Eat_code_sleep algorithm
Download Telegram
Forwarded from Deleted Account
1.what does a markup language use to identify content
Anonymous Quiz
10%
A. method
27%
B. Script
11%
C. Function
52%
D. Tag
ይሄንን html course ለመጨረስ የሚፈጀው ጊዜ 13 ቀን ነው።
በቀን 10 ደቂቃ ከኛ ጋር በመማር በ13 ቀን ውስጥ የራሳችሁን ዌብሳይት መስራት ትችላላችው!!!
Lesson 2
Html web structure

Although various versions have been released over the years, HTML basics remain the same.

The structure of an HTML document has been compared with that of a sandwich. As a sandwich has two slices of bread, the HTML document has opening and closing HTML tags.

These tags, like the bread in a sandwich, surround everything else:
Opening tag for html is
<html>
closing tag for html is
</html>
Which of following structure is the open tag of html
Anonymous Quiz
10%
A. <head>
10%
B. </html>
73%
C. <html>
8%
D. html
Lesson 3
The <head> tag

Immediately following the opening HTML tag, you'll find the head of the document, which is identified by opening and closing head tags.

The head of an HTML file contains all of the non-visual elements that help make the page work.

<html>
<head>
</head>
</html>
Channel photo updated
Tik tok videos pinned «ይሄንን html course ለመጨረስ የሚፈጀው ጊዜ 13 ቀን ነው። በቀን 10 ደቂቃ ከኛ ጋር በመማር በ13 ቀን ውስጥ የራሳችሁን ዌብሳይት መስራት ትችላላችው!!!»
Lesson 4
The <body> tag

Are you wondering how does website display images links text and quotes on the web browser ? This section will explain it briefly.

The body tag follows the head tag.
All visual-structural elements are contained within the body tag.

Headings, paragraphs, lists, quotes, images, and links are just a few of the elements that can be contained within the body tag.

★ don't forget the body tag contains the main content of web pages and head tag Can not contain body and vise versa

<Html>👉 opening tag
<Head></head>
<body>links paragraph images quotes will be set in this section</body>
</Html>👉closing tag

The <body> tag defines the main content of the HTML document.
Forwarded from Deleted Account
Lesson 5
Creating your first html file

☑️HTML files are text files, so you can use any text editor to create your first webpage.

☑️There are some very nice HTML editors available; you can choose the one that works for you. For now let's write our examples in Notepad note pad will look like this👇
Lesson 6
Html file extension

After making making your first html page the first question you will be asking is how to and in which format do I save this file.

⚠️the html file must be in extension of .htm or .html
ie my first html page.htm
Or my first html page.html

♦️Heads up Let's add HTML structure to the text editor with "Habesha Programming is awesome" in the body section.

<html>
<head>
</head>
<body>
Habesha Programming is awesome
</body>
</html>

♦️ Html is case insensitive
Which means html & Html will result the same result
Forwarded from Deleted Account
What is correct extension of html file
Anonymous Quiz
29%
A. Apk
3%
B. Ht
53%
C. Htm
15%
D. Css
Lesson 7
The <title> tag

♦️To place a title on the tab describing the web page, add a <title> element to your head section:

<html>
<head>
<title>first page</title>
</head>
<body>
This is a line of text.
</body>
</html>

⚠️The title element is important because it describes the page and is used by search engines.