Diliev.com & pLOVEdiv.com  DIliev.com.

Slides:



Advertisements
Similar presentations
HTML and CSS. HTML Hyper Text Markup Language Tells browser how to display text and images.
Advertisements

Advance CSS (Menu and Layout). CSS Navigation MENU.
CSS Styling CSS Box Model & CS110: Computer Science and the Internet.
Cascading Style Sheets
Chapter 6 More CSS Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 6 Key Concepts 1 Copyright © Terry Felke-Morris.
Layout using CSS. Using multiple classes In the head:.important{font-style:italic;}.title{color:red;} In the body: Here's a type of paragraph that is.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 6 Key Concepts 1 Copyright © Terry Felke-Morris.
Start menu -> all program -> Microsoft Visual SourceSafe-> Microsoft Visual Studio 2010 Click.
Web Standards XHTML and CSS. Today’s Show ► Discuss web standards ► XHTML ► Layout Without Tables ► CSS ► Why Web Standards?
Slide 1 CMPS 211 Internet Programming Spring 2008 Dynamic Effects with Styles Chapter 12 2/6/08.
Chapter 7 Page Layout Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
Very quick intro HTML and CSS. Sample html A Web Title.
Cascading Style Sheets (CSS): Pixel-Level Control with HTML Ease
Cascading Style Sheets. CSS stands for Cascading Style Sheets and is a simple styling language which allows attaching style to HTML elements. CSS is a.
Links.  Styling Links  Links can be styled with any CSS property (e.g. color, font-family, background-color).  Special for links are that they can.
Web Development & Design Foundations with XHTML Chapter 7 Key Concepts.
Principles of Web Design 5 th Edition Chapter Nine Site Navigation.
Cascading Style Sheets By: Valerie Kuna. What are Cascading Style Sheets? Cascading Style Sheets (CSS) are a standard for specifying the presentation.
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.
INTRODUCTORY Tutorial 7 Creating Liquid Layouts. XP Objectives Discern the differences among various types of layouts Create a liquid layout Create a.
Web Development & Design Foundations with XHTML Chapter 7 Key Concepts.
Web Development & Design Foundations with XHTML Chapter 7 Key Concepts.
End User Computing An Introduction to CSS Sujana Jyothi Research Lab1, Callan Building, Department of Computer Science
Advance CSS (Menu and Layout) Miftahul Huda. CSS Navigation MENU It's truly remarkable what can be achieved through CSS, especially with navigation menus.
With CSS, a color is most often specified by: a HEX value - like "#ff0000" an RGB value - like "rgb(255,0,0)" a color name - like "red“ Example h1.
CIS 1310 – HTML & CSS 6 Layout. CIS 1310 – HTML & CSS Learning Outcomes  Describe & Apply the CSS Box Model  Configure Float with CSS  Designate Positioning.
Navigation Bars Level 2 Extended Certificate Unit B12 Doing Business Online.
HTML for Beginners & JavaScript Magic - Step By Step - Thrandur Arnthorsson thrandur.net.
1 Dreamweaver CS5 intermediate class by Cookie Setton Build a CSS website WITHOUT TABLES Just when you thought you were starting to understand HTML coding,
Web Pages and Style Sheets Bert Wachsmuth. HTML versus XHTML XHTML is a stricter version of HTML: HTML + stricter rules = XHTML. XHTML Rule violations:
Class four: the box model and positioning. is an HTML tag which allows you to create an element out of inline text. It doesn’t mean anything! try it:
Button хийх.
Unit 20 - Client Side Customisation of Web Pages
Web Design with Cascading Style Sheet Lan Vu. Overview Introduction to CSS Designing CSS Using Visual Studio to create CSS Using template for web design.
 CSS Presentation and layout is based on the CSS Box Model.  The CSS Box Model states that every element on a page is a rectangular box.  This includes:
TUTORIAL 8: Enhancing a Web Site with Advanced CSS
Creating A Simple Web Page. Step 1- Open Dreamweaver & Create A New Page (File New) and blank.
 Word doc for you to download › Link at the beginning of class › 10 Questions › Answers to be added inline  Post to Sakai when completed › No resubmits.
 Remember that HTML is just text  Need to point to pictures  Use the img tag  alt: › screen reader › REQUIRED for this class and to validate.
Web Design I Spring 2009 Kevin Cole Gallaudet University
Week 8 – Part 2 Page Layout Basics Key Concepts 1.
1 Preparation for site Create a folder in MyDocuments: beavercheese. Create a subfolder, images Classes, career, DW beginner Download.
Stylizing a Navigational Menu Web Design Section 6-3 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development.
 Add one element at a time  If it doesn’t do what you want, › Delete it › DON’T just keep piling on more items.
Chapter 7.  Change body and link styles  Create a drop-down menu  Change color and font styles in the menu  Create a pop-up effect using CSS  Utilize.
WebD Introduction to CSS By Manik Rastogi.
CSS.
CSS Layouts: Grouping Elements
Creating Your Own Webpage
Creating Page Layouts with CSS
Cascading Style Sheets (Layout)
Web Systems & Technologies
>> CSS Layouts.
Chapter 7 Page Layout Basics Key Concepts
Web Development & Design Foundations with HTML5 8th Edition
Cascading Style Sheets
Chapter 6 More CSS Basics Key Concepts
Basics of Web Design Chapter 6 More CSS Basics Key Concepts
Fixed Positioning.
HTML5 Session III Chapter 5 - How to Use the CSS Box Model for Spacing, Borders, and Backgrounds Chapter 6 - How to use CSS for page.
Basics of Web Design Chapter 6 More CSS Basics Key Concepts
CSS and Box Model.
Basics of Web Design Chapter 6 More CSS Basics Key Concepts
How to use the CSS box model for spacing, borders, and backgrounds
Transitioning Opacity
Web Client Side Technologies Raneem Qaddoura
Session IV Chapter 15 - How Work with Fonts and Printing
Presentation transcript:

Diliev.com & pLOVEdiv.com

 DIliev.com

Home Bio Gallery Childhood  Frames are not supported by your browser.

NB: The lab does not allow audio output. Sorry 

.menu_wrap{ position:fixed; top:0px; left:0px; background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#333)); /* for webkit browsers */ background: -moz-linear-gradient(top, #000, #333); /* for firefox 3.6+ */ opacity:0.9; z-index:1; width:100%; height:40px; }.menu { margin:0; padding:0; position:fixed; top:2px; left:290px; }.menu ul { margin:0; padding:0; line-height:30px; }

.menu li { margin:0; padding:0; list-style:none; float:left; position:relative; background:#999; }.menu ul li a { text-align:center; font-family:"Times New Roman", Times, serif; text-decoration:none; height:30px; width:150px; display:block; color:#FFF; border:1px; border:solid #000; text-shadow: 1px 1px 1px #000; }.menu li:hover { background:#09F; }.menu a:hover { color:#000; }

.footer { position:fixed; bottom:-4px; left:500px; height:40px; width:400px; border-top-left-radius:10px; border-top-right-radius:10px; opacity:0.5; background-color:#999; text-align:center; border:2px; border:solid #FFF; z-index:1002; }

 pLOVEdiv.com

<!-- var answer = confirm ("Are you 18+ years old?") if (answer) alert ("Welcome") else alert ("We strongly suggest you browse the website with an adult") // --> Took Extreme planning and advanced OOP to complete this task.

#container { margin: 0px auto; border: 5px solid; width:873px; height:800px; border-radius:25px; background-color:#000; outline: none; box-shadow: px #9ecaed; }

#m01 {left:160px;} #m02 {left:305px;} #m03 {left:450px;} #m04 {left:590px;} #m05 {left:730px;} #menu a{ font-family: verdana, arial, sans-serif; font-size: 12px; font-weight:bolder; color:#FFFFFF; text-decoration:none; text-transform: uppercase; } #menu a:hover {color: #01a9c0;}

It is a fairly simple website for a new club in Plovdiv called pLOVEdiv. The layout of all pages is kept in tone by using a header that is used throughout the whole website. For navigation I created a menu on top of all pages and got it going with CSS hover, so as to show when the cursor is on top. To complete it took a lot of CSS coding. And the footer gives information about copyright and owner of the website. The website has all basic pages such as index, gallery, contacts etc. Banner/header on top appears on every page. Home/default page has some introductory text and images. It also contains some links to other pages in the content div. Contact page gives an address and contact numbers. Gallery page contains a 3 cells per row table, which is filled with images of the club resized to match the size of the cells. Parties webpage contains information about upcoming parties in our club + also information about the date and number of guests. Interesting feature is the div containers and wrappers with black background and glowing round edged borders. Creator webpage has a photo and title of the creator of the website. I have used javascript to ask for age verification as popup when you enter. The website is created for computers with any size screens, but has been tested only on a 1366x768 screen.