How to Create an HTML Page



Similar documents
About webpage creation

So we're set? Have your text-editor ready. Be sure you use NotePad, NOT Word or even WordPad. Great, let's get going.

CREATING WEB PAGES USING HTML INTRODUCTION

BASICS OF WEB DESIGN CHAPTER 2 HTML BASICS KEY CONCEPTS COPYRIGHT 2013 TERRY ANN MORRIS, ED.D

With tags you can create italic or bold characters, and can control the color and size of the lettering.

Contents. Downloading the Data Files Centering Page Elements... 6

Web Design Basics. Cindy Royal, Ph.D. Associate Professor Texas State University

Chapter 2 HTML Basics Key Concepts. Copyright 2013 Terry Ann Morris, Ed.D

ICT 6012: Web Programming

Short notes on webpage programming languages

Introduction Designing your Common Template Designing your Shop Top Page Product Page Design Featured Products...

Website Development Komodo Editor and HTML Intro

Version 4.0. Unit 3: Web Design. Computer Science Equity Alliance, Exploring Computer Science Unit 3: Web Design 102

Introduction to Web Design Curriculum Sample

An Attribute is a special word used inside tag to specify additional information to tag such as color, alignment etc.

Creating HTML authored webpages using a text editor

The Web Web page Links 16-3

WEB DESIGN LAB PART- A HTML LABORATORY MANUAL FOR 3 RD SEM IS AND CS ( )

Adding Links to Resources

Creating a Resume Webpage with

The McGill Knowledge Base. Last Updated: August 19, 2014

How to Manage Your Eservice Center Knowledge Base

COMMON CUSTOMIZATIONS

Caldes CM12: Content Management Software Introduction v1.9

Advanced Drupal Features and Techniques

Web Design and Databases WD: Class 7: HTML and CSS Part 3

HTML, CSS, XML, and XSL

Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl. Web Design in Nvu Workbook 1

By Glenn Fleishman. WebSpy. Form and function

Web Design with Dreamweaver Lesson 4 Handout

7 th Grade Web Design Name: Project 1 Rubric Personal Web Page

Intro to Web Development

Urban Planet Website Content Management System. Step-by-Step Instructions

AJAX The Future of Web Development?

Dreamweaver: Getting Started Website Structure Why is this relevant?

Creating your personal website. Installing necessary programs Creating a website Publishing a website

HTML TIPS FOR DESIGNING

Learnem.com. Web Development Course Series. Quickly Learn. Web Design Using HTML. By: Siamak Sarmady

Embedding a Data View dynamic report into an existing web-page

How to Create a Mobile Responsive Template in ExactTarget

How Web Browsers Work

Website Planning Checklist

MCH Strategic Data Best Practices Review

Glogster.com. Type code from box above

Taking your HTML s to the Next Level. Presented by: Joey Trogdon, Asst. Director of Financial Aid & Veterans Affairs Randolph Community College

Feeling Safe in Staffordshire

Web Building Blocks. Joseph Gilbert User Experience Web Developer University of Virginia Library

ITNP43: HTML Lecture 4

Introduction to XHTML. 2010, Robert K. Moniot 1

EUROPEAN COMPUTER DRIVING LICENCE / INTERNATIONAL COMPUTER DRIVING LICENCE WEB EDITING

Web Design Revision. AQA AS-Level Computing COMP2. 39 minutes. 39 marks. Page 1 of 17

Table of Contents. Page 1

{color:blue; font-size: 12px;}

Web Design Module Outline

Cisco Adaptive Security Appliance (ASA) Web VPN Portal Customization: Solution Brief

Interactive Data Visualization for the Web Scott Murray

HTML & XHTML Tag Quick Reference

Formatting Text in Blackboard

introduces the subject matter, presents clear navigation, is easy to visually scan, and leads to more in-depth content. Additional Resources 10

Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence

Frames. In this chapter

How to Create a Symbaloo Webmix

Creating Web Pages with HTML Simplified. 3rd Edition

Dreamweaver CS4 Day 2 Creating a Website using Div Tags, CSS, and Templates

Essential HTML & CSS for WordPress. Mark Raymond Luminys, Inc mraymond@luminys.com

Basics of HTML (some repetition) Cascading Style Sheets (some repetition) Web Design

Weebly Step-by-Step Instructions

Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website

Creating an HTML Document Using Macromedia Dreamweaver

Website Builder Overview

How to Edit Your Website

Module 6 Web Page Concept and Design: Getting a Web Page Up and Running

Quick Guide to the Cascade Server Content Management System (CMS)

TEMPLATE MANUAL Table of Contents

Faculty, Staff, and Student Instructions

Creating Web Pages with Dreamweaver CS 6 and CSS

HOW TO USE THIS GUIDE

Cut-to-the-Chase Series Web Foundations. HTML Assignment. By Eric Matthews Visit us at:

Advanced Web Design. Zac Van Note.

Creating Web Pages with Netscape/Mozilla Composer and Uploading Files with CuteFTP

Basic Website Maintenance Tutorial*

1. Create a web page which will contain image of window layout as follows.

Adding a CareCredit link to your practice website can help increase its ranking in online search engines like Google

NDSU Technology Learning & Media Center. Introduction to Google Sites

Content Builder: How-To Guide

2013 Copyright Speed Realtor Pte Ltd - You may not copy, scan, print or redistribute this handbook without written consent from Speed Realtor Pte Ltd

Last week we talked about creating your own tags: div tags and span tags. A div tag goes around other tags, e.g.,:

Transcription:

This is a step-by-step guide for creating a sample webpage. Once you have the page set up, you can add and customize your content using the various tags. To work on your webpage, you will need to access Notepad. How to Create an HTML Page This section walks you through creating the HTML framework. 1. Open Notepad on your computer by clicking Start > Programs > Accessories > Notepad. Save your document using the title of your choice with.html at the end AndreasWebpage.html 2. Add open and close HTML tags. These tell the page what language you are using. Add open and close tags for the head and body areas. The head area contains information for things like titles, styles and scripts. This is mostly behind-the scenes-information. The body area denotes space that will hold the body or text of the web page. 3. Add open and close tags for a title in the head. This title will appear at the top of the browser window of your webpage. <title> </title> 4. Add open and close tags for headings and paragraphs. These help break up your body content. <title> <h1> <h2> <p> <p> <h2> </title> large heading one </h1> smaller heading two </h2> here is paragraph one </p> here is paragraph two </p> smaller heading two </h2>

How to Add Style The instructions in this section show you how to add style elements to your webpage. Please note: You must retype the following code into your index.html file through Notepad. Copying and pasting the code into Notepad will not work. 1. Add the style tag (as highlighted in red). <title>welcome to Andrea s Page</title> <img src= top_photo.png /> <p>i love technology, arts and crafts, and design. </p> 2. Add style code between the style open and close tags. background-color: white; background-image: url( techtreklogo.jpg ); 3. Your code should look like this: <title>welcome to Andrea s Page</title> background-color: white; background-image: url( techtreklogo.jpg ); <img src= >

How to Embed Video <p>i love technology, arts and crafts, and design. </p> The following section allows you to add a video to your webpage. 1. Find a video on YouTube. 2. Find the share link. 3. Find the embed link. 4. Select and copy the code.

5. Paste the code into your HTML. It should look something like this: 6. The code should look like this: <title>welcome to Andrea's Page</title> background-color: lightgrey; background-image: url('techtreklogo.jpg'); p { color: blue; <p>my hobbies include technology, arts and crafts, and design. </p> <iframe width="560" height="315" src="http://www.youtube.com/embed/7jffnwq-fpw" frameborder="0" allowfullscreen></iframe> Please note: If you add the code from YouTube and it doesn t work immediately, check the following part of the code (highlighted in red). <iframe width="560" height="315" src="http://www.youtube.com/embed/7jffnwqfpw" frameborder="0" allowfullscreen></iframe> Make sure http:// is at the beginning of your code.

HTML Tag Glossary <title></title> begins and ends a web document; tells the browser that the document is in HTML header; used after html tag document title; located within header container creates the body of the document Document Formatting Tags <p></p> <br/> <h1></h1> <hr/> place at the beginning and end of a paragraph; it adds space break before the next paragraph line break; moves what comes next to the line below heading style; choose from sizes 1 (largest) 6 (smallest) horizontal line break; used to provide space between body elements Text Formatting Tags <i></i> <b></b> <u></u> italic bold underline Graphics Formatting Tags <img src="filename"> places an image in your webpage Linking Tags <a href="http://serendip.brynmawr.com/text.html">text link</a> places a hyperlink in your webpage