מבנה בסיסי של מסמך html מסמך ב- html מורכב מתגיות.

Slides:



Advertisements
Similar presentations
HTML.
Advertisements

Made by: Dan Ye. Introduction Basic Last Page ☆ HTML stands for Hyper Text Markup Language; ☆ HTML is not a programming language, it is a markup language;
1 Three more tags… Sound Redirection Marquee 2 S.C.U.B.A.
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
HTML syntax By Ana Drinceanu. Definition: Syntax refers to the spelling and grammar of a programming language. Computers are inflexible machines that.
Creating a web page Lab Assignment Goal Create a simple web page Create the file: inclass.txt in your www directory. Do you remember how to get to your.
Define html document byusing Example : Title of the document The content of the document......
Web Pages: Creating & Maintaining Body Tags. There have been several versions of HTML since its inception. VersionYear HTML1991 HTML HTML
Title, meta, link, script.  The title looks like:  The tag defines the title of the document in the browser toolbar.  It also: ◦ Provides a title for.
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
Validating, Promoting, & Publishing Your Web Site Writing For the Web The Internet Writer’s Handbook 2/e.
Using Frames in a Website GMU November 12-13, 2004.
HTML Lesson 2. Review Questions  What are HTML tags used for?  What do HTML tags look like?  What are the 3 required HTML tags?  In what section of.
Web Design Mr. Briggs’ Classes September 6-7, 2011.
This shows CIS17 and the first day introduction..
Unit 5 The Web Book Test. Unit 5 Test The Web Book Test 1. On the bottom of page 46, why is writing web pages not like writing printed documents ?
HTML NOTES October 6, Starting a document and saving  Always use notepad  Use _ for spaces otherwise it won’t work  When saving make sure you.
GUIDELINES FOR CREATING YOUR FIRST WEBPAGE GETTING STARTED.
HTML Basic Structure. Page Title My First Heading My first paragraph.
Creating Your 1 st Web Page. Tags Refers to anything between on a webpage Most appear in pairs surrounding content Some appear as empty tags (no closing.
Intro to HTML.  Hypertext markup language (HTML) is a way of telling web browsers how to display a page  You can type them by hand in a word processing.
1 HTML. 2 Full forms WWW – world Wide Web HTTP – Hyper Text Transfer Protocol HTML – Hyper Text Markup Language.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
HTML Help book. HTML HTML is the programming language used to make web pages for the Internet. HTML stands for Hyper Text Markup Language. HTML is made.
What you can see in the picture?
Getting Started – Basic Page Structure
HTML – The COMPUTING UNLOCKED GUIDE
Three more tags… Sound Redirection Marquee 1.
Internet Exploration: HTML Basics
Mansoor Ahmed Bughio.
Concepts of HTML, CSS and Javascript
INTRODUCTION TO HTML AND CSS
CSE 3! By Emma Sasson CSE Online Webpage HTML WORD EXCEL ALICE
Web Development & Design Foundations with HTML5 8th Edition
Lecture 8. HTML. Author: Aleksey Semyonov
Creating a webpage html coding
S.Y.B.M.M. LECTURE SERIES - PART 2
CS120 The Information Era Chapter 4 – More HTML Specifics
Internet Exploration: HTML Basics
Introduction to Web & HTML
مقدمة عن الإنترنت وفهم لغة HTML
HTML HYPERTEXT MARKUP LANGUAGE.
Web Design and Development
Introduction to Web & HTML
HTML 12/27/2018.
What is HTML anyway? HTML stands for HyperText Markup Language. Developed by scientist Tim Berners-Lee in 1990, HTML is the "hidden" code that helps us.
Making Web pages.
Intro to Web Development Links
Creating a web page Auxiliary Lab Lecture
INTRODUCTION TO HTML AND CSS
Web pages Lesson 3.
Unit 2 Test Building a Web Page Test.
What is HTML?.
Nerd Website HTML.
WEB PUBLISHING 2/19/2019 JIPRA ICT DEPARTMENT
HTML Basic Structure.
HTML Structure.
HTML What is Html? HTML stands for Hypertext Markup Language.
Common Page Design Elements
Web Application Development
HTML
HTML – The COMPUTING UNLOCKED GUIDE
CIS 133 mashup Javascript, jQuery and XML
HyperText Markup Language
The Most Basic HTML Page
The language of the internet
Creating a web page.
The language of the internet
Lesson 3: Organizing your material
Monday, Sept. 24 Today we are going to update the html code to html5. It has some new features that we have not covered yet.
Presentation transcript:

מבנה בסיסי של מסמך html מסמך ב- html מורכב מתגיות. <head>ראש המסמך (תגית פותחת) </head> (תגית סוגרת) <body>גוף המסמך ( תגית פותחת ) כאן נכתוב את התגיות השונות לעיצוב דפי האתר </body> (תגית סוגרת) </html> (תגית סוגרת) לרוב התגיות ב-html יש תגית פותחת ותגית סוגרת.

התגית <head></head> התגית מגדירה את כותרת הדף בתחום התגיות הנ"ל יכולות להופיע תגיות נוספות. התגית תפקידה <title></title> כותרת המסמך </meta> מציינת מידע לגבי המסמך ושפתו <script></script> כתיבת תסריטים

HTML היא שפה המשמשת ליצירת עמודים בWorld Wide Web (ובקיצור WWW) . כל הרכיבים שמופיעים בעמודי Web כולל פסקאות טקסט, רקעים, רשימות של נתונים, גרפיקה ססגונית ,צבעים ועוד מוצגים באמצעות ה HTML . שפה זו מאפשרת ליצור מסמכים לפרסם אותם באינטרנט בעזרת שרת Web וניתן לדפדף בהם.   אפשר לבנות מסמכי HTML , להציב אותם בדיסק הקשיח , לעדכן אותם , לשפר אותם ולתרגל מיומנות - לפני שתחשוף את היצירה לפני כל העולם.

הוספת כותרת לחלון הדפדפן <title></title> <html dir=“rtl”> <head> <title> דף האינטרנט הראשון שלי </title> </head> <body> כאן נכתוב את המלל הרצוי </body> </html>

<Tag> </Tag>   HTML היא שפת כתיבה או שפת סימון המגדירה כיצד ייראה עמוד טקסט מסוים. כשאנו כותבים מסמך אינטרנט , אנו מבצעים כמעט את אותן פעולות שאנו מבצעים בעמוד תמלילים, כגון הגדלה והקטנה של טקסט , הדגשה, קו תחתון והחלת סגנונות כותרת בגדלים שונים.  תגיות HTML בסיסיות <Tag> </Tag>

התוצאה המתקבלת בדפדפן

התגית <body></body> מגדירה את גוף המסמך קיימת תגית פתיחה <body> קיימת תגית סיום </body> <html dir=“rtl”> <head> <title> דף האינטרנט הראשון שלי </title> </head> <body> </body> </html>

הוספת רקע לדף html bgcolor <html dir=“rtl”> <head> <title> דף האינטרנט הראשון שלי </title> </head> <body bgcolor=“yellow”> </body> </html>

התוצאה המתקבלת בדפדפן

לימוד HTML ברשת

W3 SCHOOLS

ניתן לשנות ולראות מיד את הדף שהשתנה ניתן לשנות ולראות מיד את הדף שהשתנה

בין התגיות <title> </title> הקלד את הטקסט My First HTML doc  

<head> <title> </title> </head> <body>   <html> <head> <title> </title> </head> <body> My First web page </body> </html>