December 1, 2017 Web Design.

Slides:



Advertisements
Similar presentations
Slice and Dice: From PSD Image to XHTML+CSS Svetlin Nakov Telerik Corporation
Advertisements

Chapter 3 – Designing your web pages Dr. Stephanos Mavromoustakos.
Very quick intro HTML and CSS. Sample html A Web Title.
Session 4: CSS Positioning Fall 2006 LIS Web Team.
SM5312 week 11: CSS Menus & Navigation Bars1 An Introduction to Cascading Style Sheets CSS Menus and Navigation Bars Nick Foxall.
Advance CSS (Menu and Layout) Miftahul Huda. CSS Navigation MENU It's truly remarkable what can be achieved through CSS, especially with navigation menus.
Diliev.com & pLOVEdiv.com  DIliev.com.
Unit 20 - Client Side Customisation of Web Pages
Art 128 Interface Programming 1 In-class Presentation Week 11B.
INSTRUCTIONAL SUPPORT SERVICES (ISS) SHORT COURSE, FALL 2012 UMSL Introduction to Web Page Design.
CSS (Cascading Style Sheets): How the web is styled Create Rules that specify how the content of an HTML Element should appear. CSS controls how your web.
TUTORIAL 8: Enhancing a Web Site with Advanced CSS
INFSCI  Start with a skeleton outline: copy and paste:  Warning sometimes copy and paste of quote marks from PowerPoint doesn’t work correctly.
CIT 256 Organizing Large Websites: Divs, DW Templates Dr. Beryl Hoffman.
Creating A Simple Web Page. Step 1- Open Dreamweaver & Create A New Page (File New) and blank.
Eat Your Words! Creating webpage Layout. CONTENT The Layout of a Webpage HEADER FOOTER Each of these sections represents a ‘div’ (or divider). By linking.
HTML5 Sections Old structuring elements –body, div, address, blockquote –headings: h1, h2, h3, … –ul, ol, table New structuring elements –header, footer,
Lecture 2 - HTML and CSS Review SFDV3011 – Advanced Web Development 1.
Web Design I Spring 2009 Kevin Cole Gallaudet University
Web Design Part I. Click Menu Site to create a new site root.
WEB DEVELOPMENT IMMERSIVE BUILDING PAGE LAYOUTS. 2 Box Model Scaling Positioning Boxes Box Aesthetics HTML 5 Semantic Tags CSS Resets TOPICS GENERAL ASSEMBLYWEB.
1 Preparation for site Create a folder in MyDocuments: beavercheese. Create a subfolder, images Classes, career, DW beginner Download.
INT222 – Internet Fundamentals Week 8: Using New HTML features 1.
Unit 15 – Web Authoring Web Authoring Project.
Cascading Style Sheets (CSS) Internal Style Sheets Classes
IS1500: Introduction to Web Development
Introduction to CSS Layout
INTRO TO WEB DEVELOPMENT html
Introduction to HTML:.
Basic HTML Tutorial Amber Brady.
HyperText Markup Language
Lab Styling Tabs with CSS Scott Lydiard
Do you want to make info graphics for the US Election?
More advanced HTML and CSS
HTML.
What is CSS.
Creating Page Layouts with CSS
Bare bones notes.
Vendosja e Headers dhe Footers
AN INTRODUCTORY LESSON TO MAKING A SIMPLE WEB PAGE By: RC Emily Solis
>> CSS Layouts.
Bootstrap響應式網頁設計 (Responsive Web Design, RWD)
Web Development & Design Foundations with HTML5 7th Edition
Chapter 7 Page Layout Basics Key Concepts
Web Development & Design Foundations with HTML5 8th Edition
Web Development & Design Foundations with HTML5
Chapter 8 More on Links, Layout, and Mobile Key Concepts
Basics of Web Design Chapter 7 Page Layout Basics Key Concepts
CSS.
Robert Kiffe Senior Customer Support Engineer
Creating a Webpage with External CSS
CSS Debugging Tips Manually check syntax errors
Intro to Web Development Links
Web Development & Design Foundations with HTML5
Nov. 1, 2018 Drop-down menu.
Intro to Web Development
Bare bones notes.
Responsive Web Design (RWD)
Introduction to HTML Lecture 1 Kanida Sinmai
Creating a simple web page
USING IMAGES This is the bottom of the page. Note the alignment of having text before and after, at the top, in the middle and at the bottom. Code is on.
Please bookmark your URL
HTML & CSS 7 Languages in 7 Days.
Web Development & Design Foundations with HTML5
Session 4: CSS Positioning
School of Business Administration
Web Client Side Technologies Raneem Qaddoura
Creating your website and learning HTML
CSc 337 Lecture 5: Grid layout.
Session 4: CSS Positioning
Presentation transcript:

December 1, 2017 Web Design

Drop-down Menus We will create a bare bone version the drop-down menu on page 487-89. In addition to the presentation that you experienced earlier in the semester, this will give you a fundamental understanding of how it works. To learn to make fancier dropdowns, you can: learn through tutorials, Search for “CSS3 generators” to generate automatically online. Search for dropdown menu programs. I wanted to show you a quick online version, but most require you to log on or to download the software… too much to do in the short time that we have.

SEO Tips (Search Engine Optimization) By Nick and Tony

Starting HTML and CSS /* dont think i need <!DOCTYPE html> <html lang="en"> <head> <title>Skeleton dropdown </title> <meta charset="utf-8"> <link href="dropstyles.css" rel="stylesheet"> </head> <body> <div id ="wrapper"> <nav> <ul> <li><a href="index.html">Home</a></li> <li><a href="coffee.html">Coffee</a></li> <li><a href="cuisine.html">Cuisine</a></li> <li><a href="directions.html">Directions</a></li> <li><a href="http://www.justnowhere.com">Contact</a></li> </ul> </nav> <header> <h1>Hello World</h1> </header> <p>This is a sentence that will repeat repeatedly and I will keep repeating. Don't read this sentence that will repeat repeatedly and I will keep repeating. Don't read this sentence that will repeat repeatedly and I will keep repeating. Don't read this sentence that will repeat repeatedly and I will keep repeating. Don't read this sentence that will repeat repeatedly and I will keep repeating. </p> </div> </body> </html> /* dont think i need header, main, nav, footer, figure, figcaption { display: block; } */ body { background-color: #66484d; } #wrapper { width: 800px; min-height: 400px; background-color: #ffe9ec; margin: auto; header { background-color: #ffd3d9 ; min-height: 125px; p { padding: 10px; nav { background-color: #bb0033; text-align: right; padding-right: 5px;

Image Gallery To follow-up on the presentation on photo galleries, we will do the exercise on page 493. To save time, we’ll use their files, but for a richer experience, you should later try it with your own pictures and make them around 600px or some other moderate size. Start by creating a folder called gallery2 Copy images from chapter11/starter/gallery Copy the template starter from below: <!DOCTYPE html> <html lang="en"> <head> <title>Skeleton Photo Gallery</title> <meta charset="utf-8"> <link href="dropstyles.css" rel="stylesheet"> </head> <body> <h1>My Image Gallery </h1> <div id =“gallery"> </div> </body> </html>

Parallax Design Sorry that we will not get a chance to explore this one more fully. I see that you were highly engaged in the presentation on Parallax design. However, it would take a longer time to follow up on it. I suggest that you try the simple one on w3schools to get the foundational aspects of how it uses layers, positioning, transitions, etc. https://www.w3schools.com/howto/howto_css_parallax.asp Then search for beginner tutorials to make it fancier. I will continue to explore as well.

C’est tout, folks!