TIK 12 – Prof. Blerand Koshi

Slides:



Advertisements
Similar presentations
 Definition of HTML Definition of HTML  Tags in HTML Tags in HTML  Creation of HTML document Creation of HTML document  Structure of HTML Structure.
Advertisements

Tutorial 1: Getting Started with HTML5
Introduction to HTML Today we will look at: Separating style and content The purpose of a text editor such as Notepad How web-pages are made Creating a.
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
This shows CIS17 and the first day introduction..
HTML Basic Structure. Page Title My First Heading My first paragraph.
Project 02 Creating and Editing a Web Page Concept Map of Unit Creating and Editing a Web Page Key Learning Understand the elements to create a web page.
1 Introduction to HTML. 2 Definitions  W W W – World Wide Web.  HTML – HyperText Markup Language – The Language of Web Pages on the World Wide Web.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
HTML is the language that allows text and graphics to be displayed as Web pages. It is a set of special codes, called tags, that tells a browser application.
INTRO TO WEB DEVELOPMENT html
Internet Exploration: HTML Basics
Web Design and Development
Mansoor Ahmed Bughio.
HTML Lab 5 10/1/2015.
HTML.
CSS.
Coding, Testing and Valdating a Web Page
An introduction by M Hains
Basic HTML PowerPoint How Hyper Text Markup Language Works
HTML 101.
Vendosja e Headers dhe Footers
Intro to Web Development Class A Review
Internet Exploration: HTML Basics
Principles of Software Development
SHMU-2 VUSHTRRI Punim Seminarik Lënda:Informatikë Tema:Kartela Grafike
TIK 12 – Prof. Blerand Koshi
Essentials of HTML.
Fletet e Stiluara ne Kaskade (Cascading Style Sheets - CSS)
Abetarja e Web-it, HTML Leksion 1.
TIK 12 – Prof. Blerand Koshi
Insertimi i hapësirave dhe kalimi në kryerresht
Marrja e te inputit te perdoruesit
Basic HTML PowerPoint How Hyper Text Markup Language Works
Essentials of HTML.
Android.
Introduction to HTML Today we will look at:
HTML A brief introduction HTML.
Insertimi i audiove/videove
Tema: Softueri aplikativ Lënda: Teknologji Punoi: Blerina Jashari Arsimtar: Muhamer Ujkani Klasa: lX-9.
TIK 12 – Prof. Blerand Koshi
Vendosja e prapavijes (Background)
MICROSOFT OFFICE WORD 2003.
Arsimtar:Muhamer Ujkani
5.2.3 Be able to use HTML and CSS to construct web pages
Punim Seminarik Tema:Microsoft office PowerPoint Punoi:Liridona Gashi Arsimtar:Muhamer Ujkani Shkolla:SHMU-2 Klasa:IX/9.
HTML HYPERTEXT MARKUP LANGUAGE.
Tema: Viruset dhe Antiviruset Sh. m
Agregatët monetarë Ekzistojnë agregatë monetarë të ndryshëm që përfaqësojnë masa sasiore të ofertës agregate të parasë në një vend. Agregatët monetarë.
Punuar nga: Rilind Ademi
I Love my family!!!.
Punuar nga : Granit Bajrami
Format ne HTML/XHTML Leksion Jan-19.
Creating a web page Auxiliary Lab Lecture
Targetimi i elementeve specifike
Degëzimet.
Ligjerata 3 Dr. Fisnik Dalipi
Puna me fajlla ne C++ Dr. Fisnik Dalipi.
Pertemuan 1b
TIK 12 – Prof. Blerand Koshi
HTML Basic Structure.
HTML Structure.
TIK 11 – Prof. Blerand Koshi
The language of the internet
Creating a web page.
Unazat FOR.
The language of the internet
Veprime themelore ne dokument
SMART TOURISM ENHACEMENT PROJECT
HTML Introduction.
Presentation transcript:

TIK 12 – Prof. Blerand Koshi Vendosja e teksteve TIK 12 – Prof. Blerand Koshi

Vendosja e tekstit në faqe Ekzistojnë shumë mënyra për vendosjen e tekstit në faqe Elementet për Tituj (heading elements) <h1></h1> <h2></h2> <h3></h3> <h4></h4> <h5></h5> <h6></h6>

Vendosja e tekstit në faqe Elementet tjera për tekste <p> </p> <div> </div> <span> </span> Edhe me të gjitha këto elemente mund të shënojmë tekste, ato kanë specifika të ndryshme

Web Faqja me titull dhe paragrafe <!doctype html> <html> <head> <title>My First Document</title> </head> <body> <h1>My Web Page</h1> <p>Welcome to my web page..</p> <h2>My Books</h2> <p>You can find information on my books.</p> </body> </html>

Vërejtje rreth krijimit të web faqeve me editor Është me rëndësi të kuptohet që duhet të përdorim text editor e jo word processor Mund të përdoret NOTEPAD i Windows Ruani fajllin me ekstension .html Përdorni shkronja të vegjël gjatë emërtimit të fajllave

? Pyetje