Creating a simple web page

Slides:



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

CSS Styling CSS Box Model & CS110: Computer Science and the Internet.
Web Engineering 1 Ishaq Khan Shinwari MCS City University Peshawar.
CSS The basics { }. CSS Cascading Style Sheets - language used to – describe html appearance & formatting Style Sheet - file that describes – how html.
/k/k 1212 Cascading Style Sheets Part one Marko Boon
CHAPTER 7 STYLING CONTENT WITH CASCADING STYLE SHEETS.
Very quick intro HTML and CSS. Sample html A Web Title.
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.
Cascading Style Sheets By: Valerie Kuna. What are Cascading Style Sheets? Cascading Style Sheets (CSS) are a standard for specifying the presentation.
Advance CSS (Menu and Layout) Miftahul Huda. CSS Navigation MENU It's truly remarkable what can be achieved through CSS, especially with navigation menus.
กระบวนวิชา CSS. What is CSS? CSS stands for Cascading Style Sheets Styles define how to display HTML elements Styles were added to HTML 4.0 to.
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:
Unit 20 - Client Side Customisation of Web Pages
CSS normally control the html elements. Three Ways to Insert CSS There are three ways of inserting a style sheet: External style sheet Internal style.
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.
Understanding HTML Style Sheets. What is a style?  A style is a rule that defines the appearance and position of text and graphics. It may define the.
Web Design I Spring 2009 Kevin Cole Gallaudet University
Tutorial #3 Cascading Style Sheets. Tutorial #2 Review - Anchors Links to Site DMACC Internal Links Go to Top Mail To me Local.
CS134 Web Design & Development Cascading Style Sheets (CSS) Mehmud Abliz.
CSS Tutorial 1 Introduction Syntax How to use style specifications. Styles.
Microsoft Expression Web-Illustrated Unit F: Enhancing a Design with CSS.
Designing Web Pages The case for CSS. The Power of CSS css Zen Garden
1 Cascading Style Sheets
WebD Introduction to CSS By Manik Rastogi.
CSS.
IS1500: Introduction to Web Development
Cascading Style Sheet.
CSS for Styling Text.
CCT260H - Christopher Evan Jones
CS3220 Web and Internet Programming CSS Basics
Style Sheets.
The Internet 10/11/11 Fonts and Colors
( Cascading style sheet )
Creating Your Own Webpage
CSS Rule Selector Declaration Block Value Attribute Name body {
Cascading Style Sheet (CSS)
CSS.
INTRODUCTION TO HTML AND CSS
Introduction to Web programming
Spring 2009 Kevin Cole Gallaudet University
Cascading Style Sheets
Filezilla problems continuing
Web Authoring Task 1– Create Style Sheet List – LI { Table Body
CSS Cascading Style Sheets
Cascading Style Sheets An Introduction
Introduction to Web programming
CSS.
Cascading Style Sheet (CSS)
Table CSS Create a new CSS called tablestyle.CSS Green Background
The Internet 10/13/11 The Box Model
Cascading Style Sheet (CSS)
Software Engineering for Internet Applications
5.2.3 Be able to use HTML and CSS to construct web pages
CS134 Web Design & Development
Cascading Style Sheets Color and Font Properties
Web Programming– UFCFB Lecture 11
The Internet 10/6/11 Cascading Style Sheets
INTRODUCTION TO HTML AND CSS
Web Development & Design Foundations with H T M L 5
Chapter 2 HTML & CSS.
Web Design and Development
CS3220 Web and Internet Programming CSS Basics
CS3220 Web and Internet Programming CSS Basics
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.
Web Design & Development
Creating your own Styles
Session IV Chapter 15 - How Work with Fonts and Printing
Introduction to Cascading Style Sheets (CSS)
Introduction to Styling
Cascading Style Sheets - CSS
Presentation transcript:

Creating a simple web page 4/9/2019

Objectives Creats a simple web page Use HTML tags for structuring the web page Tags used: h1, h2, head, body, p, img Use CSS for styling the web page Styles used font-size, text-align, margin, color, background-color, font-family, font-size 4/9/2019

HTML file & CSS file First.html link Bgoose.css 4/9/2019

Final Rendition 4/9/2019

webpage1.html <!DOCTYPE html> <html><head> <meta charset="utf-8"> <title>EAP Course</title> <link rel="stylesheet" type="text/css" href="amrita.css"> </head> <body><h1><img src="images/amrita.png" alt="Amrita Uuniversity logo"><br>Amrita University</h1> <h2>Emerging Applications and Platforms</h2> <p>This course deals with emerging applications and platforms in the current technology sector.</p> <h2>Discussion</h2> <p>We will have lectures..<em>Hands-on exercies</em> and learn through doing.</p> <h2>Grading Policy</h2> <p>2 tests, 1 exam, 1 mini-project, many hands-on exercises<br> </p> </body> </html> 4/9/2019

.css body { background-color: #faf2e4; margin: 0 15%; font-family: sans-serif; } h1 { text-align: center; font-family: serif; font-weight: normal; text-transform: uppercase; border-bottom: 1px solid #57b1dc; margin-top: 30px; h2 { color: #d1633c; font-size: 1em; 4/9/2019

Summary We created a simple web page We added style Lets remove the style sheet and check the plain output. Lets modify some of the style elements and check the effect. 4/9/2019