Creating your first website

Slides:



Advertisements
Similar presentations
Unit 3 Day 4 FOCS – Web Design. No Journal Entry.
Advertisements

Project 8 Creating Style Sheets.
Creating and Editing a Web Page Using Inline Styles
Using Advanced Cascading Style Sheets
Web Page Development Identify elements of a Web Page Start Notepad
Creating Tables in a Web Site Using an External Style Sheet HTML5 & CSS 7 th Edition.
HTML Concepts and Techniques Fourth Edition Project 3 Creating Web Pages with Links, Images, and Formatted Text.
HTML Comprehensive Concepts and Techniques Third Edition Project 3 Creating Web Pages with Links, Images, and Formatted Text.
Copyright © Texas Education Agency, All rights reserved. 1 Web Technologies Website Development with Dreamweaver.
Creating Tables in a Web Site
HTML Comprehensive Concepts and Techniques Second Edition Project 3 Creating Tables in a Web Site.
Web Design Using HTML Codes. WHAT DO I NEED TO BEGIN DESIGNING A HOME PAGE? 1.YOU NEED A FOLDER (also called a DIRECTORY) You should set up a folder or.
HTML.
Using HTML to Create a Basic Web Page… By Josh Gallagan.
Basic HTML Hyper text markup Language. Re-cap  … - The tag tells the browser that this is an HTML document The html element is the outermost element.
Creating your Webpage with tables. This is a 2 column by 1 row table!
Website Development with Dreamweaver
More Basic HTML. Add spacing (single & double space) Save Refresh Add horizontal rule Add comments Add styles Add headings Add features Add alignments.
HTML CRASH COURSE. What is HTML?  Hyper Text Markup Language  The language used to make web pages  Written by using tags.
HTML Concepts and Techniques Fourth Edition Project 6 Using Frames in a Web Site.
Getting Started with HTML Please use speaker notes for additional information!
HTML Hyper Text Markup Language. What is an HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup.
HTML INTRODUCTION. What is HTML?  HTML stands for Hypertext Markup Language  Developed in 1990  Hidden code that helps us communicate with others on.
HTML Concepts and Techniques Fourth Edition Project 7 Creating a Form on a Web Page.
INTRODUCTORY Tutorial 1 Using HTML Tags to Create Web Pages.
15.1 Fundamentals of HTML DeKalb County School System.
WRA 210: MODULE 3 &PORTFOLIO SESSION 2: STUFF TO REMEMBER Do the readings. It helps, seriously. Ask questions. It’s OK to interrupt me (not others).
HTML GUIDE Press F5 and then Click on the links on the left to get to the section you want Section 1: Getting Started Section 2: Moving Banner Section.
Creating Your First Web Page – Topic: Creating a wiki, blog, image blog and podcast Click Arrow - Next Slide 1.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place.
HTML Concepts and Techniques Fifth Edition Chapter 3 Creating Web Pages with Links, Images, and Formatted Text.
Web Authoring with Dreamweaver. Unit Objectives  Be able to define keywords: HTML, HTTP (protocol), browser, web server, client/server, tag, attribute,
Marquees and Tables. Tags Fun Stuff Here! Creates text that scrolls from right to left! Animated text. This is a great tag but does not work on every.
Creating and Editing a Web Page
This shows CIS17 and the first day introduction..
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.
1 Preparation for site Create a folder in MyDocuments: beavercheese. Create a subfolder, images Classes, career, DW beginner Download.
+ HTML Hypertext Markup Language. + Introducing HTML HTML is the language used in writing websites Open the “HTML Practice” link on the Daily Log Delete.
Creating and Editing a Web Page Using Inline Styles
Your HTML website creating your first html file. Creating an HTML FIle Open note pad from accessories, programs. Write code. Save and view. In 3 Steps.
Behind every site is a mix of special languages that your web browser understands The main way of describing any website is HTML HTML stands for Hyper.
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.
Word 2010 Headers and Footers You can make your document look professional and polished by utilizing headers and footers. The header is a section of the.
1 Your Web Page title body of Web page main heading H2 heading bulleted list paragraph.
Click on CIS120/17 to go to website for course. The week of will tell you what is planned for the week and what has been assigned.
Creating Web Pages with Links, Images, and Embedded Style Sheets
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place Programming language.
Revised June 2008 Online PD Basic HTML1 Let’s Try It!  Open Notepad oStart > All Programs > Accessories > Notepad oDon’t get WordPad by mistake – won’t.
ECS – Storyboarding and Introduction to Web Design
Let’s Try It! Open Notepad
Online PD Basic HTML The Magic Of Web Pages
Bell Ringer Conduct your own research & answer the following questions (1 paragraph). What is HTML? Who developed HTML? How is it used in web design?
Introduction to basic HTML
HTML GUIDE Press F5 and then
Uppingham Community College
Project 8 Creating Style Sheets.
HTML.
Creating Web Pages with Links, Images, and Formatted Text
5.2.3 Be able to use HTML and CSS to construct web pages
HTML Extension.
How to PostPower Point Presentations
BUILDING A WEBSITE 7.4.2: Basics of HTML and CSS.
HTML Structure.
European Computer Driving Licence
Creating your first website
15.1 Fundamentals of HTML 2 assignments: 1—complete the worksheet
Hypertext Markup Language
HTML Lesson 3.
Hyper text markup Language
Presentation transcript:

Creating your first website Web Design using HTML & CSS Create a webpage using Notepad Identify the use of different tags Add text to the website

Exercise 1: Create a folder In your ICT/ Computing folder create a folder called ‘HTML’ Inside this folder create a folder called ‘Web Design’

Exercise 2: Web Page Layout Click on Apps (on the desktop) > Tools open Notepad and enter the following:   <HTML> <HEAD> </HEAD> <BODY> </BODY> </HTML> Click on File > Save As, navigate to the My Website folder you created, name it First WebPage.htm and click on Save. Note: It is important to add the .htm file extension after the file name to make the file become a web page. Open My Website folder, notice that the file is showing as a web browser file type. To view it, double click on the file and the following web page will be display. Start tag Notice there is always a start tag and an end tag. End tag

Exercise 3: Adding Text To edit the web page, select the web page by left clicking on it. Click on Open dropdown arrow menu at the top> select Notepad as show below Add a header text and body text as shown below in bold, onto the Notepad document.   <HTML> <HEAD> <TITLE> My First Web Page </TITLE> </HEAD> <BODY> This is my first web page (your name) </BODY> </HTML>

Switch to the web browser and refresh the page by pressing on F5. Click on File – Save. Switch to the web browser and refresh the page by pressing on F5. Your page should be display as follow Take a screenshot of both your Notepad page and website page side by side in a powerpoint as shown on the next slide. Add a title to the powerpoint - ‘My first website’ Save this powerpoint in your MyWebsite Folder Notice the header Notice the body

Add the text boxes and arrows like I have shown here. Header Website Body Notepad Add the text boxes and arrows like I have shown here.

Exercise 4: Paragraph It is important to realise that to split your text into paragraphs when it is displayed you must either use the paragraph tag <P> or the line break tag <BR> Open a new notepad and copy in the code on the right Save the notepad as “Paragraph.htm” <HTML> <HEAD> <TITLE>Paragraph</TITLE> </HEAD>   <BODY> <P> This is my first web page.</P> <BR> <P>I hope you like it! </P> Good-bye for now. </BODY> </HTML>

Open the file on web browser and your page should display something that looks similar to the page below. Again take a screenshot and show both the web browser and notepad on another slide with a heading ‘Paragraphs ‘.

Task 1 Write out what HTML is, what it stands for in 4 bullet points Find out what are HTML Tags? Write 3 bullet points Find out the what the different headers are in HTML Add them to a new notepad document – save as Headings.htm Show a screenshot of both the web browser and notepad on a a slide in your powerpoint with a title – Headings. Describe what the following tags do and write these on a slide. <p> <br> <body>

Task 2 Find the song lyrics to your favourite song. Add these to a new notepad document Add the appropriate HTML Tags (<p>, <br>, headings) Save it as a .htm file and take a screenshot and add it to your powerpoint. Don’t forget to add start tags and end tags otherwise it will not work.