ECS – Storyboarding and Introduction to Web Design

Slides:



Advertisements
Similar presentations
HTML Basics Customizing your site using the basics of HTML.
Advertisements

Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
HTML.
ASHIMA KALRA.  WHAT IS HTML WHAT IS HTML  HTML TAGS HTML TAGS  FORMATTING TAGS FORMATTING TAGS.
Intro to HTML Workshop. Welcome This slideshow presentation is designed to introduce you to the basics of HTML. It is the first of three HTML workshops.
Web Page Development Identify elements of a Web Page Start Notepad
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
Designing Web Pages Getting to know HTML... What is HTML? Hyper Text Markup Language HTML is the major language of the Internet’s World Wide Web. Web.
CPSC 203 Introduction to Computers Lab 39, 40 By Jie (Jeff) Gao.
HTML. We’ll learn … What HTML is What tags are What a basic web page looks like What 3 HTML tags are required What HTML comments look like How to title.
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.
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.
All Web pages are written with some form of HTML (HyperText Markup Language). HTML documents are saved as Text Only files so virtually any computer can.
HTML. WHAT IS HTML HTML stands for Hyper Text Markup Language HTML is not a programming language, it is a markup language A markup language is a set of.
HTML CRASH COURSE. What is HTML?  Hyper Text Markup Language  The language used to make web pages  Written by using tags.
Introduction to HTML. What is a HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup tags  The.
Just Enough HTML How to Create Basic HTML Documents.
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.
Basic HTML PowerPoint How Hyper Text Markup Language Works.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Introduction to HTML. Slide 1 Hard-Coding What is hard-coding? –Creating the page in a text editor just using HTML A Web designer should know how to hard-
IS1811 Multimedia Development for Internet Applications Lecture 4: Introduction to HTML Rob Gleasure
INTRODUCTION TO HTML5 Semantic Layout in HTML5.  The new semantic layout in HTML5 refers to a new class of elements that is designed to help you understand.
HTML. Hypertext Markup Language Lesson Objectives 1. We will be able to understand the need for HTML and where it is used 2. We will be edit HTML to.
Introduction to HTML Wah Yan College (Hong Kong) Mr. Li C.P.
Basic HTML Hyper text markup Language. Lesson Overview  In this lesson, you will learn to:  Write HTML code using a text editor application such as.
HTML Basics Objectives: Objectives: Understand what HTML is Understand what HTML is Know basic HTML tags Know basic HTML tags Understand how to view HTML.
LEARNING HTML PowerPoint #1 Cyrus Saadat, Webmaster.
Introducing the World Wide Web Internet- a structure made up of millions of interconnected computers whose users communicate with each other and share.
HTML Basics Computers. What is an HTML file? *HTML is a format that tells a computer how to display a web page. The documents themselves are plain text.
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 Basic. What is HTML HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language, it.
Introduction to HTML Year 8. What is HTML O Hyper Text Mark-up Language O The language that all the elements of a web page are written in. O It describes.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Notes Test #2 will be held one week from this Thursday Check to see if you have a Vision account –Launch Netscape –Point & Click to location and type vision.
HTML HyperText Markup Language Victoria E. Kozlek.
HTML Review * is used as a reference for most of the notes in this powerpoint.
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.
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.
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.
Week 1: Introduction to HTML and Web Design
Basic concepts of web design
Getting Started with HTML
Online PD Basic HTML The Magic Of Web Pages
Introduction to HTML.
Web Basics: HTML/CSS/JavaScript What are they?
HTML Basics.
Introduction to HTML:.
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Introduction to basic HTML
Uppingham Community College
Basic HTML PowerPoint How Hyper Text Markup Language Works
INSTRUCTIONS This presentation was designed to first be viewed in class with the instructor. Students may then view it on their workstations while trying.
Hyper text markup Language
HTML Robert McIntosh
HTML Vocabulary.
HTML.
Basic HTML PowerPoint How Hyper Text Markup Language Works
HTML 12/27/2018.
HTML What is it? HTML is a computer language devised to allow website creation. These websites can then be viewed by anyone else connected to the Internet.
Introduction to HTML5.
Creating your first website
HyperText Markup Language
The language of the internet
The language of the internet
Creating your first website
WJEC GCSE Computer Science
Hypertext Markup Language
Web Programming and Design
Presentation transcript:

ECS – Storyboarding and Introduction to Web Design

Last Class: Last class we learned data compression which a very important concept when trying to store digital data. Wherever we can find patterns in our data then we exploit that fact and replace patterns we find with other symbols This is the method we used when compressing songs All types of data has patterns, so we can compress really large files into smaller files A 30 MB song can be compressed to 3 MB An 800 GB hour long video can be compressed down to 1 GB

Introduction: Today we are moving away from Algorithms and Compression and moving onto web design The first part of web design or creating any high level program is to design or create a layout/structure for your code. There is a planning process that needs to occur first

Journal Entry: If you were to create a website of your choosing what would you create? Make a list of ideas for a website that might interest you Share your ideas with the people around you and choose one of your ideas This idea is what you will use to design your first web page using HTML Save your lists for use on later projects

Create a Storyboard: Now that you have developed a list of ideas for your website, you are going to choose one and create a storyboard based on the idea you chose. A Storyboard is a visual plan for a website(how it is going to look) Storyboards usually consist of pages that include a rough sketch outlining the content, navigation, and design elements of the website Navigation refers to elements in your web page that describe how to get to other areas. Design Elements refer to logo placement, pictures, how text is displayed, You can pair up and work on this assignment together. Create a storyboard for the homepage of the website chosen.

Gallery Walk: Post story boards around the room and have students visit about 5 different story boards Describe something you like about each one or give a recommendation about maybe something they should consider doing differently Add comments or suggestions via post-it notes

Introduction to HTML: Now that we’ve created our story boards for our website now we can go and move to creation of the site but first we must learn some basics. HTML (Hyper Text Markup Language) is the language used to design webpages. HTML works by using different HTML tags to define different types of text, image placement, headings, formatting options, everything <HTML> Defines an HTML document </HTML> <head> Describes information about the document </head> <title> Defines the title part of the document </title> <body> Defines the main part of the document </body>

Web Page Creation: Now I am going to design a very simple web page to show you the structure of an HTML file so you can create your idea. Now that I’ve shown you the basics create an HTML page. What you need to do: Have an appropriate title and have a sort paragraph of text When you are done designing the HTML save the file as a .html file and open up the file in your browser If you would like, you can engage in a process called Pair Programming One person programs while the other person describes what they need to do. Switch every 5-10 minutes.

HTML Example Format:

Webpage Add-ons: Mini Goal: Try to add one paragraph and add two lists to your web page. Notice no matter how you format the text in the <body> tag that all the text inside runs together For more formatting options you need more HTML tags

More HTML Tags: <p> Defines a paragraph </p> <h1> to <h6> defines a header </h1> to h</6> Try and insert these tags into your file and see the changes You need the end tag so the computer knows when to stop using a certain format The computer needs the correct instructions in order to produce the desired outcome

HTML Tags without End Tags: Some HTML tags don’t have ending tags because sometimes it doesn’t make sense to. You only want to do one task <br/> Defines a line break <hr/> Defines a horizontal line Experiment with these different HTML tags and see how you can format your site properly Try different tags and save your file to see if they produce the correct result If the output isn’t what is intended then debug your code A great reference site is http://www.w3schools.com/html/html_intro.asp Go there for more HTML tags you can use and other info about HTML