Insertimi i hapësirave dhe kalimi në kryerresht

Slides:



Advertisements
Similar presentations
Chapter 7 Using Advanced Cascading Style Sheets HTML5 & CSS 7 th Edition.
Advertisements

4.01 Cascading Style Sheets
CIS 1315 – Web Development for Educators CIS 1315 HTML Tutorial 9: Working With XHTML.
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.
 This presentation introduces the following: › 3 types of CSS › CSS syntax › CSS comments › CSS and color › The box model.
Lesson 2 Adding more content to your web page. Thanks to Richard Hudnutt, Luella HS.
IT204 - Web Scripting and Authoring I Introduction to Dreamweaver Unit 6.
Linking to an External Style Sheet Web Design Section 4-3 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development.
Planning your site/organization on the Web Please use speaker notes for additional information!
DYNAMIC HTML What is Dynamic HTML: HTML code that allow you to change/ specify the style of your web pages. Example: specify style sheet, object model.
HTML & CSS BasicsHTMLCSSQuizAnswers  The logo In this website(made of html and css Codes), you will learn some basics of How to use HTML and CSS codes.
Getting Started with HTML. HTML  Hyper Text Markup Language  HTML isn’t a program language, its known as a markup language  A Markup language has tags.
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 Basic Structure. Page Title My First Heading My first paragraph.
Tutorial #1 Using HTML to Create Web Pages. HTML, XHTML, and CSS HTML – HyperText Markup Language The tags the browser uses to define the content of the.
LT: I can use CSS to decorate a web page. Do Now: Get your storyboard, and log in to winhome. Write our a list of colors you want in your website. (Minimum.
Canvas Styles Adding Color with HTML / CSS Marley - Jan
INTRODUCTION ABOUT DIV Most websites have put their content in multiple columns. Multiple columns are created by using or elements. The div element is.
CASCADING STYLE SHEET CSS. CSS stands for Cascading Style Sheets Styles define how to display HTML elements Styles were added to HTML 4.0 to solve a problem.
INTRO TO WEB DEVELOPMENT html
CSS Nick Sims.
Web Basics: HTML/CSS/JavaScript What are they?
CSS.
Coding, Testing and Valdating a Web Page
W3C Web standards and Recommendations
>> CSS Rules Selection
Introduction to Web programming
Vendosja e Headers dhe Footers
Simple PHP An Introduction.
HTML Basics and CSS style
HTML Robert McIntosh
Principles of Software Development
CASCADING STYLE SHEET CSS.
TIK 12 – Prof. Blerand Koshi
Windows XP(Control Panel)
Access 2007 Quiz.
Most tags must have an open and a close in XHTML.
SH.M.U-2 Tema:WEB Shfletuesit Nxënësi:Elbaroza Bunjaku Arsimtari:Muhamer.
TIK 12 – Prof. Blerand Koshi
Introduction to HTML Today we will look at:
HTML A brief introduction HTML.
Insertimi i audiove/videove
Lënda: Imformatikë Punoi: Rona Preteni Arsimtar: Muhamer Ujkani IX/9
TIK 12 – Prof. Blerand Koshi
Vendosja e prapavijes (Background)
SHMU-2 Vushtrri Punim seminarik Lënda: Informatikë Tema: Rjetet informative Klasa IX-2 Punuar nga: Argjent Abdurrahmani Erëza Mejzini.
Tema:Crossover Cable Nxënësi:Amir Sadiku Arsimtari:Muhamer Ujkani
PowerPoint 2007 Quiz.
5.2.3 Be able to use HTML and CSS to construct web pages
MS POWERPOINT PREZANTIMET.
SH.M.U-2 Emri dhe mbiemri:Lavdim Veseli Klasa:IX-3 Shkolla:SHMU2
5.2.3 Be able to use HTML and CSS to construct web pages
6. Unaza While dhe Do While
Shmu2 Lënda: Informatikë Tema: Programi i Power Ponit Klasa: IX-4
HTML 12/27/2018.
Targetimi i elementeve specifike
TIK 12 – Prof. Blerand Koshi
HTML Basic Structure.
Variablat dhe konstantet
The language of the internet
TIK 12 – Prof. Blerand Koshi
The language of the internet
Type your presentation title here
Veprime themelore ne dokument
Creating your website and learning HTML
Unit 13: Website Development
This is my sheet And this is my sheet.
Operatorët.
Shqipëria Trajnimi për Statistikat
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
Presentation transcript:

Insertimi i hapësirave dhe kalimi në kryerresht TIK 12 – Prof. Blerand Koshi

Kalimi në kryerresht Kalimi në rresht të ri në Word bëhet thjesht përmes Enter-it Në HTML nuk është kaq lehtë Pa marrë parasysh sa herë e shtypim enter-in në HTML dokument, ajo do të paraqitet në rreshtin e njëjtë

Kalimi në kryerresht <!doctype html> <html> <head> <title>My First Document</title> </head> <body> <h1>My Web Page</h1> <p>Welcome to my web page. Here you’ll find all sorts of information about me.</p> <h2>My Books</h2> <p>You can find information on my books here as well.</p> </body> </html>

Kalimi në kryerresht Etiketa që mundëson kalimin në rresht të ri në HTML është <br> Nuk kemi nevojë për </br> Mund ta shohim dikund edhe si <br />

Kalimi në kryerresht <!doctype html> <html> <head> <title>My First Document</title> </head> <body> <h1>My Web Page</h1> <p>Welcome to my web page. Here you’ll find all sorts of information about me.</p> <br> <h2>My Books</h2> <p>You can find information on my books here as well.</p> </body> </html>

Insertimi i hapësirave Insertimi i hapësirave shtesë në HTML arrihet përmes   E njëjta mund të bëhet edhe me   CSS (Cascading Style Sheets) na jep mënyra më të përshtatshme për krijimin e hapësirave

Komentet Mirëmbajtja më e lehtë e HTML dokumenteve Zhvilluesit e përdorin për të dhënë informata shtesë Hapja e komenteve bëhet përmes <! -- Mbyllja bëhet përmes --> <!-- Komenti vendoset ndërmjet -->

Komentet Komentet mund të lexohen nga të gjithë <!doctype html> <head> <title>My First Document</title> </head> <body> <h1>My Web Page</h1> <p>Welcome to my web page. Here you’ll find all sorts of information about me.</p> <!-- Adding information about my books 10/1/2012 --> <h2>My Books</h2> <p>You can find information on my books here as well.</p> </body> </html>

<!doctype html> <html> <head> <title>My First Document</title> </head> <body> <h1>My Web Page</h1> <p>Welcome to my web page. Here you’ll find all sorts of information about me.</p> <!-- Adding information about my books Date: 10/1/2012 --> <h2>My Books</h2> <p>You can find information on my books here as well.</p> </body> </html>

Shembull jo valid <!DOCTYPE html> <html> <head> <title>Invalid Comment Example</title> </head> <body> < !-- This is not a valid comment --> <p>Document content goes here.....</p> </body> </html>

? Pyetje