This document discusses CSS box model properties including margin, padding, border, and outline. It provides examples of how to use these properties to control spacing and borders for elements. Key points covered include using shorthand properties to set multiple sides at once for margin, padding, and border, as well as new CSS3 properties like border-radius and box-shadow. Students are assigned to create four web pages demonstrating examples of using these box model properties.
This document discusses different image file types used on websites such as GIF, JPEG, and PNG. It provides details on each file type and their uses. It also covers how to add images to webpages using HTML and CSS, including styling images with properties like opacity. Finally, it discusses principles of graphic design and color theory, and provides examples of websites with good color schemes.
This document discusses CSS style sheets and selectors. It begins with an introduction to CSS and its uses. It then covers CSS syntax, the different ways to insert CSS (inline, internal, external), and different types of selectors (element, id, class). Examples are provided for each topic. The document concludes with an assignment to create a webpage about movies using various CSS selectors and techniques learned in the document.
This document discusses responsive web design and provides steps to create responsive websites. It begins by defining responsive web design and listing the initial steps: adding a viewport, applying basic styling, and setting the first breakpoint. It then covers techniques like constraining width, adjusting padding and text size, adapting elements, and using media queries. The document provides examples and references for creating responsive layouts and adjusting designs based on screen size.
jQuery Mobile is a framework for building mobile web sites and apps using standard web technologies like HTML, CSS and JavaScript. It allows developers to build sites that automatically adjust to mobile devices with features like touch optimization and responsive design. The summary provides instructions on including jQuery Mobile files, basic page structure using data attributes, and examples of buttons and navigation bars.
A sitemap is a hierarchical list or diagram that represents the structure of HTML pages on a website. It is used to plan the logical presentation of content for users, visualize user paths, and organize content to help achieve business goals. There are two common types of sitemap diagrams: a horizontal tree diagram and a vertical tree diagram. Examples of sitemaps show hierarchical relationships between pages through visual diagrams.
This document discusses CSS (Cascading Style Sheets) syntax and selectors. It explains the different ways to apply styles to HTML elements using inline styles, internal style sheets, and external style sheets. It also describes the three main CSS selectors - element, id, and class selectors. The element selector styles elements based on the tag name. The id selector selects individual elements using the id attribute. The class selector selects elements that share the same class attribute. Students are assigned to create a webpage presenting their two favorite movies using these CSS selectors.
This document provides an introduction to good and bad web design. It discusses key elements of good design such as simplicity, consistency, uniqueness, usefulness, easy navigation, responsiveness and lack of errors. Good design is exemplified by websites like Nike.com that are easy to use and achieve their objectives well. Bad design is seen on websites like Havenworks.com that do not clearly convey their purpose. The document concludes with an assignment to evaluate examples of good and bad web design based on the principles discussed.
This document provides an overview of HTML and CSS topics including:
- A brief history of HTML and CSS standards from 1990 to present.
- Descriptions of common HTML elements like <body>, <head>, <img>, <a>, and lists.
- Explanations of CSS concepts like selectors, properties, units, positioning, and layout fundamentals.
- Details on CSS topics like the box model, centering content, semantic HTML, and flexbox.
The document serves as a course outline or reference for learning HTML and CSS fundamentals.
Cascading Style Sheets (CSS) is a mechanism for adding style to HTML documents. CSS allows complete control over layout, design and formatting of web pages. CSS properties can be applied inline, internally via <style> tags, or externally via linked style sheets. CSS uses selectors to apply styles to HTML elements based on their id, class, type and other attributes. Declarations are made up of properties and values to specify styles.
This document summarizes CSS Grid Layout, a new two-dimensional grid system being added to CSS. It discusses some of the limitations of existing CSS layout methods and how Grid Layout addresses them. Key points include: Grid Layout uses line-based placement to position items, grid tracks can be flexible or fixed widths, areas can be explicitly or implicitly named, and the system avoids hacks and limitations of previous methods.
- HTML, CSS, and JavaScript are becoming the new standard for building applications and interactive experiences on the web.
- Best practices include using semantic HTML, clean CSS with a focus on maintainability, and JavaScript performance optimizations.
- Key techniques discussed are image sprites, progressive enhancement, and jQuery selector chaining to reduce DOM lookups.
about this presentation:
1) this presentation was a quickie for non-tech employees, who wanted a basic understanding of html/css, as it related to a white-label SAAS product;
2) the back-end/front-end definitions relate to the specific application (it's inaccurate if node.js is in the picture)
CSS stands for Cascading Style Sheets
Styles define how to display HTML elements
External Style Sheets can save a lot of work
Styles are normally saved in external .css files. External style sheets enable you to change the appearance and layout of all the pages in a Web site, just by editing one single file!
Cascading Style Sheets (CSS) is a style sheet language used to describe the presentation of HTML and XML documents. CSS separates document content from document presentation, enabling control over elements like layout, colors, and fonts. This separation improves accessibility, flexibility, and maintenance of web pages. CSS can format pages for different rendering methods like on-screen, in print, and for speech-based browsers.
The document provides an introduction to HTML basics including HTML document structure, common tags, and formatting. It discusses the <!DOCTYPE> declaration, <head> and <body> sections, common text formatting tags, headings, paragraphs, comments, and includes code examples.
The document provides an introduction to HTML basics including text, images, tables and forms. It covers the structure of an HTML document with the <head> and <body> sections. It describes common tags for headings, paragraphs, hyperlinks and images. It also discusses attributes, comments, and different ways to style and format text in HTML. The document is intended to teach HTML fundamentals.
HTML is the standard markup language used to create web pages. It provides a structure and layout for text, images, and other content. The document explains the basic components of an HTML page, including the <head> and <body> tags, common text formatting tags, links, lists, and tables. It recommends learning HTML tags through online resources or by examining the source code of existing web pages, and emphasizes starting simply with tags like <head>, <title>, <h2>, and <p>.
The document discusses the three main technologies used to build user interfaces: HTML for structure, CSS for presentation, and JavaScript for behavior. It emphasizes that each technology should only be used for its intended purpose to improve accessibility, portability, maintainability, and performance. HTML provides structure using tags, CSS handles styling and layout with rules, and JavaScript adds interactive behaviors. The document then goes into more detail about each technology and their various components.
Static Websites
This document discusses HTML5 forms and how to code them. It provides examples of different form field types like text, email, number and describes how to declare forms in HTML5 using tags. It also covers styling forms with CSS.
The document provides an agenda for a workshop on HTML, CSS, and putting them together. It covers HTML topics like semantic tags, comments, and best practices. It then discusses CSS topics such as IDs vs classes, floats, shorthand, and putting HTML and CSS together with project structure and layouts. The workshop aims to give an introduction to HTML, CSS, and how to structure websites using these languages.
This document provides an introduction to Bootstrap, an open-source front-end framework for building responsive mobile-first websites and web applications. It discusses the basics of web development using HTML, CSS, and JavaScript. It then explains what Bootstrap is, how to add it to a website, and how to use its grid system, forms, buttons, and other common elements. Resources for using, customizing and finding additional components for Bootstrap are also provided.
- CSS3 is made up of modular components at different stages of development rather than a single specification. These include selectors, properties, and other modules.
- CSS selector capabilities were expanded in CSS3 with things like attribute selectors that select elements based on attributes, pseudo-classes for dynamic states like hover and active, and structural pseudo-classes for things like first-child.
- CSS4 is extending selector functionality further with things like the :matches pseudo-class to apply rules to groups of selectors, pseudo-classes for time-based states, and grid selector features. Support for CSS4 selectors is starting to appear in modern browsers.
This document discusses CSS fonts and font families. It covers:
1) There are generic and specific font families, with examples like Serif, Sans-Serif, Times New Roman, Arial.
2) For web accessibility, fonts should be simple, high-contrast, avoid small sizes and all caps. Standard fonts like Arial, Verdana are best.
3) Fonts like Verdana designed for screens and have good legibility, while Arial is also common but characters can be confused. Font stacks provide alternatives if the first isn't available.
1) The document evaluates several font styles for use in a music magazine masthead, ultimately selecting "NEOU" for its boldness and ability to draw attention.
2) "NEOU" is described as bold and spaced out, making it suitable to draw readers' eyes to the magazine cover.
3) The author decides on an all-black monochrome color scheme based on reader survey feedback and to match the magazine's simplistic theme.
This document discusses CSS (Cascading Style Sheets) syntax and selectors. It explains the different ways to apply styles to HTML elements using inline styles, internal style sheets, and external style sheets. It also describes the three main CSS selectors - element, id, and class selectors. The element selector styles elements based on the tag name. The id selector selects individual elements using the id attribute. The class selector selects elements that share the same class attribute. Students are assigned to create a webpage presenting their two favorite movies using these CSS selectors.
This document provides an introduction to good and bad web design. It discusses key elements of good design such as simplicity, consistency, uniqueness, usefulness, easy navigation, responsiveness and lack of errors. Good design is exemplified by websites like Nike.com that are easy to use and achieve their objectives well. Bad design is seen on websites like Havenworks.com that do not clearly convey their purpose. The document concludes with an assignment to evaluate examples of good and bad web design based on the principles discussed.
This document provides an overview of HTML and CSS topics including:
- A brief history of HTML and CSS standards from 1990 to present.
- Descriptions of common HTML elements like <body>, <head>, <img>, <a>, and lists.
- Explanations of CSS concepts like selectors, properties, units, positioning, and layout fundamentals.
- Details on CSS topics like the box model, centering content, semantic HTML, and flexbox.
The document serves as a course outline or reference for learning HTML and CSS fundamentals.
Cascading Style Sheets (CSS) is a mechanism for adding style to HTML documents. CSS allows complete control over layout, design and formatting of web pages. CSS properties can be applied inline, internally via <style> tags, or externally via linked style sheets. CSS uses selectors to apply styles to HTML elements based on their id, class, type and other attributes. Declarations are made up of properties and values to specify styles.
This document summarizes CSS Grid Layout, a new two-dimensional grid system being added to CSS. It discusses some of the limitations of existing CSS layout methods and how Grid Layout addresses them. Key points include: Grid Layout uses line-based placement to position items, grid tracks can be flexible or fixed widths, areas can be explicitly or implicitly named, and the system avoids hacks and limitations of previous methods.
- HTML, CSS, and JavaScript are becoming the new standard for building applications and interactive experiences on the web.
- Best practices include using semantic HTML, clean CSS with a focus on maintainability, and JavaScript performance optimizations.
- Key techniques discussed are image sprites, progressive enhancement, and jQuery selector chaining to reduce DOM lookups.
about this presentation:
1) this presentation was a quickie for non-tech employees, who wanted a basic understanding of html/css, as it related to a white-label SAAS product;
2) the back-end/front-end definitions relate to the specific application (it's inaccurate if node.js is in the picture)
CSS stands for Cascading Style Sheets
Styles define how to display HTML elements
External Style Sheets can save a lot of work
Styles are normally saved in external .css files. External style sheets enable you to change the appearance and layout of all the pages in a Web site, just by editing one single file!
Cascading Style Sheets (CSS) is a style sheet language used to describe the presentation of HTML and XML documents. CSS separates document content from document presentation, enabling control over elements like layout, colors, and fonts. This separation improves accessibility, flexibility, and maintenance of web pages. CSS can format pages for different rendering methods like on-screen, in print, and for speech-based browsers.
The document provides an introduction to HTML basics including HTML document structure, common tags, and formatting. It discusses the <!DOCTYPE> declaration, <head> and <body> sections, common text formatting tags, headings, paragraphs, comments, and includes code examples.
The document provides an introduction to HTML basics including text, images, tables and forms. It covers the structure of an HTML document with the <head> and <body> sections. It describes common tags for headings, paragraphs, hyperlinks and images. It also discusses attributes, comments, and different ways to style and format text in HTML. The document is intended to teach HTML fundamentals.
HTML is the standard markup language used to create web pages. It provides a structure and layout for text, images, and other content. The document explains the basic components of an HTML page, including the <head> and <body> tags, common text formatting tags, links, lists, and tables. It recommends learning HTML tags through online resources or by examining the source code of existing web pages, and emphasizes starting simply with tags like <head>, <title>, <h2>, and <p>.
The document discusses the three main technologies used to build user interfaces: HTML for structure, CSS for presentation, and JavaScript for behavior. It emphasizes that each technology should only be used for its intended purpose to improve accessibility, portability, maintainability, and performance. HTML provides structure using tags, CSS handles styling and layout with rules, and JavaScript adds interactive behaviors. The document then goes into more detail about each technology and their various components.
Static Websites
This document discusses HTML5 forms and how to code them. It provides examples of different form field types like text, email, number and describes how to declare forms in HTML5 using tags. It also covers styling forms with CSS.
The document provides an agenda for a workshop on HTML, CSS, and putting them together. It covers HTML topics like semantic tags, comments, and best practices. It then discusses CSS topics such as IDs vs classes, floats, shorthand, and putting HTML and CSS together with project structure and layouts. The workshop aims to give an introduction to HTML, CSS, and how to structure websites using these languages.
This document provides an introduction to Bootstrap, an open-source front-end framework for building responsive mobile-first websites and web applications. It discusses the basics of web development using HTML, CSS, and JavaScript. It then explains what Bootstrap is, how to add it to a website, and how to use its grid system, forms, buttons, and other common elements. Resources for using, customizing and finding additional components for Bootstrap are also provided.
- CSS3 is made up of modular components at different stages of development rather than a single specification. These include selectors, properties, and other modules.
- CSS selector capabilities were expanded in CSS3 with things like attribute selectors that select elements based on attributes, pseudo-classes for dynamic states like hover and active, and structural pseudo-classes for things like first-child.
- CSS4 is extending selector functionality further with things like the :matches pseudo-class to apply rules to groups of selectors, pseudo-classes for time-based states, and grid selector features. Support for CSS4 selectors is starting to appear in modern browsers.
This document discusses CSS fonts and font families. It covers:
1) There are generic and specific font families, with examples like Serif, Sans-Serif, Times New Roman, Arial.
2) For web accessibility, fonts should be simple, high-contrast, avoid small sizes and all caps. Standard fonts like Arial, Verdana are best.
3) Fonts like Verdana designed for screens and have good legibility, while Arial is also common but characters can be confused. Font stacks provide alternatives if the first isn't available.
1) The document evaluates several font styles for use in a music magazine masthead, ultimately selecting "NEOU" for its boldness and ability to draw attention.
2) "NEOU" is described as bold and spaced out, making it suitable to draw readers' eyes to the magazine cover.
3) The author decides on an all-black monochrome color scheme based on reader survey feedback and to match the magazine's simplistic theme.
This document discusses trends in web interface design and elements of effective design. It outlines trends like longer scrolling sites, storytelling/interaction, simplicity, and large typography. It also covers web components like responsive design for multiple screen resolutions. The document details elements of good design like simplicity, consistency, identity, useful content, and navigation. It discusses site structure models and layout. Finally, it provides an assignment to design an e-commerce site using tools like Photoshop.
HTML5 introduces many new elements that improve the semantics of HTML documents. These include new structural elements like <header>, <nav>, <article>, and <footer> that define different sections of a page. HTML5 also adds new form controls like <datalist> and <output>. It introduces multimedia elements <video> and <audio> to embed video and audio. The <canvas> element allows dynamic drawing via scripting, enabling 2D and 3D graphics. HTML5 provides a simpler way to structure pages compared to HTML4's <div> elements.
CSS Style and selector, In our CSS tutorial you will learn how to use CSS to control the style and selector. Example and Assignment for Web design Technology class
This document summarizes key aspects of text and typography for multimedia applications. It covers the text tradition from print including typefaces, size, and style. It also discusses computer text codes and font technologies like bitmap and outline fonts. The document outlines guidelines for using text in multimedia, such as being brief and readable, and combining text with other media. It provides an overview of incorporating text into multimedia applications through various methods.
The document provides an overview of HTML, HTML5, and validations for web design. It discusses the basics of HTML including elements like headings, paragraphs, links, tables and divs. It also covers new semantic elements introduced in HTML5 like header, nav, article and section. The document recommends validating code for browser compatibility, rendering speed, accessibility and to satisfy web standards. It provides a link to an online HTML validator and assigns students to write HTML code based on a figure using divs and HTML5 elements.
Bootstrap is the most popular HTML, CSS and JS framework for developing responsive, mobile first projects on the web.
How to use bootstrap, a framework for web design
The document discusses several approaches to Arabic spell checking. It begins by outlining common Arabic spelling errors and then summarizes seven different approaches: 1) a stochastic approach focusing on space insertions and deletions, 2) a Prolog-based approach detecting errors and offering corrections, 3) an approach using n-gram scores and a matrix method, 4) generating an Arabic word list for error detection and language modeling, 5) a system with error detection and correction components using a dictionary and error model, 6) improving this system by enhancing the dictionary and candidate generation, and 7) concluding that the results are promising but there is still room for improvement.
The document analyzes several fonts for their suitability for use on the front cover of a magazine masthead. It evaluates each font for traits like boldness, modernity, uniqueness, and ability to stand out on magazine racks. Some fonts are deemed too similar to others, too thin, or too large and cluttered for a magazine cover. The Kalinga font is described as the most contemporary with clean modern lines that would appeal to current audiences.
A smiling host awaits you – neatly trimmed, sharply dressed and very attractive too. She has something to show you in front her – well cut, sparkling, colored tanzanite. As you start guessing “What in this world is a Tanzanite?”, she narrates you a story of Tanzanite’s history, exclusivity and rarity that would want you to own one.
And as the host continues to entertain you by sharing some of her personal experiences of Tanzanite and providing you with ideas of how you can gift your daughter for the Thanksgiving, the prices continue to roll down, sometime to the extent of -90%.
With only 5 minutes into the narrative, the Final price is shown and you see orders start pouring in. Now, after witnessing an attractive host, wonderful narrative, eye catching product, falling prices, the reminder for Thanksgiving and stocks running out, would you want to wait? No! You feel your adrenaline flowing and you pick your phone.
Welcome to the world of Vaibhav Global Limited (VGL), Welcome to the world of Home Shopping !.
VGL is an electronic retailer of fashion jewelry, fashion accessories and lifestyle products. They are vertically integrated and they source their inventories from India, Thailand, China and Indonesia.
VGL predominantly focuses on the US and UK consumer markets through their exclusive cable, satellite and broadcast televeision networks, extremely well supported and integrated with a e-commerce platform. They are available in the US through Liquidation Channel (TV broadcast) and liquidationchannel.com (Web) and in the UK through Jewellery Channel (TV broadcast) and thejewellerychannel.tv.
In FY 14, VGL reported revenues of INR 12,983 mn (growth of 45%) and PAT of INR 1,526 mn (growth of 94%) with a Basic EPS of INR 47.4. It generated an ROE of 66%, ROCE of 53% with an EBITDA margin of 11%.
While the numbers already look extremely impressive, I believe that the business has just scratched the surface. VGL has a really long runway for growth with improving EBITDA margin and improving FCF at consistently high return ratios, thus making it a Multibagger stock in the making.
Following are key factors which make VGL a highly probable Multibagger opportunity available at a reasonable valuation.
For more info, please visit the document attached.
The document discusses various aspects of cascading style sheets (CSS) including syntax, sources of style, inline style sheets, and properties for styling text, links, tables, lists, and borders. CSS allows adding styles like fonts, colors, and spacing to web documents. It was developed by Håkon Wium Lie and uses selectors and declarations to style HTML elements. Inline, internal, and external styles are different sources of CSS style rules.
Microsoft Word - Paging, Headers, FootersLisa Hartman
To add a header or footer with your name and page number:
1. Select the Insert tab and choose Page Number, Top of Page, and Left position.
2. Type your name before the inserted page number.
3. To change the page number format, double-click the header/footer and choose Format Page Number, adjusting the Start At number as needed.
May 11, 2013 for Trade School Manila
Is there an easy way to learn Macros for Excel? In this review, we tried to do it in 2 hours! Learn recording, and convert them into loops.
Microsoft Office is a suite of applications, including MS Word for documents, MS Excel for spreadsheets, MS PowerPoint for presentations, and MS Access for database management. MS Word allows users to create, edit, and print documents. MS Excel enables calculations and charts through spreadsheets. MS PowerPoint is used to create slide presentations with animations, transitions, and narrations. MS Access provides tools for building and managing databases, tables, forms, and reports.
This document discusses different types of multimedia data and file formats. It describes text, graphics, images, audio, video, and animation. For images, it discusses bits per pixel and compression formats like JPEG, JPG, and BMP. It explains how audio is digitized and compressed, with lossy and lossless algorithms. Video involves sampling frames at rates like 30 fps and uses compression. Animation shows series of pictures displayed rapidly. Common file formats are described like RTF, TIFF, MIDI, JPEG, and MPEG, which is used for video compression standards.
This document provides information and instructions on creating and using macros in Microsoft Word and Excel 2003. It discusses recording macros to automate repetitive tasks, creating macros, running macros, adding macros to toolbars for easy access, and tips for using Word and Excel. Examples are provided for creating a letterhead macro in Word and running macros in both applications.
This document provides an introduction to CSS (Cascading Style Sheets). It discusses key CSS concepts like selectors, properties, values and syntax. It also covers different ways to apply CSS like inline, internal and external stylesheets. Common CSS properties for formatting text like font, color, text-decoration are described. The document also discusses CSS box model and different units of measurement in CSS.
This document provides information about an internship in web design and covers several key concepts of CSS (Cascading Style Sheets) including what CSS is used for, the basic syntax and structure of CSS, common CSS properties for controlling text, color, background, and font styles, and how to attach CSS to an HTML document. It includes examples of using CSS to control properties like font size, color, text alignment, background images and provides overviews of CSS concepts like the box model, specificity and inheritance to style web pages.
This document provides information about an internship in web design and covers various CSS concepts. It begins by stating the internship is in web designing and lists some benefits of learning CSS such as creating stunning websites and becoming a web designer. It then covers CSS topics like the basic syntax, selectors, properties, and values. Examples are provided for different CSS properties including color, font, text, background, and positioning. The document aims to teach the fundamentals of CSS through definitions, examples, and explanations of how it controls styling for web documents.
Introduction to Cascading Style Sheets (CSS)Chris Poteet
This document provides an introduction to Cascading Style Sheets (CSS) including definitions, why CSS is used, the cascade, inheritance, using style sheets, CSS syntax, selectors, the box model, CSS and the semantic web, browser acceptance, fonts, units, colors, layouts, text formatting, backgrounds, lists, shorthand properties, accessibility, and resources for further information.
Cascading Style Sheets (CSS) allow separation of document content from document presentation, including elements like fonts, sizes, colors and positioning. There are three main ways to apply CSS rules: inline within HTML tags; embedded within <style> tags in the <head>; or in an external .css file linked via <link>. CSS rules contain selectors that target elements, and declarations that set property-value pairs to style them, such as font-size: 12px. CSS provides control over various text properties including font, size, style, alignment, spacing, decoration and transformation.
The document discusses various CSS properties for styling fonts, text, links, borders, and outlines. It defines properties like font-family, font-size, text-align, border-style, and outline-width. Examples are provided to demonstrate how each property can be used to style text and elements on a webpage. Key CSS properties and their possible values are summarized in tables for easy reference. Code snippets and HTML examples further illustrate the use of these properties in practice.
This document discusses CSS fonts and text properties. It begins by explaining relative and absolute font length units like em, ex, percent, inches, centimeters, pixels, and points. It then provides examples of using these units in CSS code. The document also lists various font and text properties in CSS like font-family, font-size, font-style, font-weight, color, line-height, letter-spacing, and text-align. It provides the description and possible values for each property. Examples are given to demonstrate using these properties in CSS code and HTML. The document concludes by assigning students to create a web page presenting information about CSS fonts and text properties using these CSS techniques.
On these slides. I explain all the properties and values of CSS Cascade Style Sheet (CSS).
How to define CSS class or id. How to implement CSS on the HTML page.
Cascading Style Sheets (CSS) allows obtaining full control over HTML elements and their default properties. CSS can be used to easily redefine properties of any HTML tag, opening new design opportunities. Styles defined in CSS can be reused throughout an HTML document or across multiple pages for consistent formatting. The document discusses different methods of implementing CSS, including inline, internal, and external stylesheets. It also covers various CSS properties for formatting text, fonts, colors, backgrounds, lists, borders, opacity, and more. Examples are provided to demonstrate different CSS declarations.
Act Academy provides Industrial training in PHP, .Net, graphic designing, web designing and many more. Also provides diploma courses in CAD designing, Financial accounting with 100% job assurances.
The document provides an overview of CSS topics covered in an advanced CSS course. It includes sections on lectures covering CSS theory, the Natours project setup and use of advanced CSS techniques, responsive design, flexbox, CSS grid, and several coding projects. Individual lectures cover topics such as CSS architecture, the cascade, specificity, value processing, inheritance, and the visual formatting model.
The document discusses controlling web typography through CSS properties and principles. It demonstrates how visual interest can be achieved using basic CSS properties like font-size, color, and text-transform. Letterspacing, line-height and other properties are shown to manipulate text. Web fonts have increased designers' interest in typography. JavaScript libraries can target letters, words and lines for fine-grained styling control. Future possibilities discussed include better support for text effects and more specific CSS selectors.
This document provides an introduction to CSS (Cascading Style Sheets), including what CSS is, why it is used, its history and syntax. It describes CSS selectors, properties, and different methods of attaching style definitions. It also covers the CSS box model and properties for styling text, links, lists, backgrounds, borders, margins and paddings.
This document provides an overview of cascading style sheets (CSS) and how they are used to style XML documents. Some key points:
- CSS allows styling documents by associating presentation rules with document elements to control how content is rendered.
- Rules have selectors that indicate which elements the rule applies to, and declarations that set how those elements are styled.
- CSS properties can be inherited by child elements. Stylesheets are linked to XML documents using processing instructions.
- The box model treats elements as boxes with properties like margins, padding, borders, and dimensions that can be styled. Positioning methods include normal flow, floats, and absolute positioning.
CSS is used to style and lay out web pages. It allows separation of document content from page layout and design. CSS rules contain selectors that specify the elements to style and properties that define the styles. Common properties include font, color, background, borders, margin and padding. CSS rules can be defined internally, in a linked stylesheet, or inline in HTML elements. CSS provides control over text, font, color, spacing and layout to present content attractively and consistently across multiple browsers and devices.
This document discusses requirements gathering for software development projects. It defines what requirements are, including business, functional, and technical requirements. It emphasizes the importance of gathering accurate and complete requirements through techniques like interviews, questionnaires, and prototyping. A good requirement is described as being complete, correct, clear, verifiable, necessary, feasible, prioritized, consistent, traceable, modular, and design-independent. The document provides an assignment with questions to help gather requirements for various goals and problems.
This document provides an introduction to PowerPoint and its features. It discusses the menu bar and tools, how to create a new presentation, how to insert images and shapes, how to add tables and graphs, and how to use animations and transitions. It also notes that PowerPoint allows presentations with text, pictures, sounds, slide shows, WordArt, themes, imported Excel data, videos, animations, and that it can be used to create reports, flash files, slides, posters, and artworks.
This document discusses personas, scenarios, and goals in user experience design. It provides examples of:
1. A persona named Betty that describes her background and characteristics to represent a type of user.
2. Steps to create personas by finding users, patterns, and validating personas to represent synthesized user profiles.
3. Scenarios as stories that communicate interactions between a user and system through a sequence of steps under certain conditions.
4. Examples of ATM scenarios to demonstrate different interactions and outcomes.
5. Usability goals around learnability, efficiency, memorability, errors, and satisfaction.
6. User experience goals related to qualities like being satisfying, motivating, enjoyable, aest
The document discusses the user experience (UX) design process, which includes strategy, research, analysis, design, and production phases. It provides examples of methods used during the research and design phases like focus groups, usability testing, card sorting, A/B testing, and eye tracking. The document also gives examples of deliverables for concept development like brainstorming, mood boards, storyboards, user flows, and task analysis. Finally, it defines brainstorming as a method to generate ideas and solve problems by obtaining a complete list of items.
The document discusses various image file formats such as JPEG, GIF, BMP, TIFF, and PNG and their characteristics such as color depth, compression, and usage. It also covers the differences between raster (bitmap) images and vector images. The document provides an overview of tools and workshops for Adobe Illustrator and includes instructions for an assignment involving creating artwork in Illustrator and submitting files.
This short document promotes the creation of presentations using Haiku Deck on SlideShare. It contains a photo credit and a call to action encouraging the reader to get started creating their own Haiku Deck presentation on SlideShare.
A content management system (CMS) is a computer application that allows publishing, editing, and modifying content on a website. It offers advantages like being easy for developers to use, cost effective, flexible, and able to be maintained over time. Popular CMS platforms include WordPress, Drupal, Joomla, Textpattern, SilverStripe, and MODX. Examples of websites that use CMS include icondock.com and social.ford.com.
Power Supply Basics: Unregulated & Regulated DCGS Virdi
In this in-depth presentation, Dr. G.S. Virdi, Former Chief Scientist at CSIR-Central Electronics Engineering Research Institute (Pilani, India), walks you through the complete lifecycle of a power supply—from raw AC or DC input to a clean, regulated output.
What You’ll Learn:
Power Supply Architecture: Understand the end-to-end block diagram, including transformers, rectifiers, filters, and regulation stages.
Unregulated DC Supplies: Explore how transformer-rectifier-filter combinations yield basic DC rails and the limitations you need to account for.
Regulated DC Supplies: Dive into regulation techniques, with a focus on switching regulators and voltage-inverter topologies. Learn how pulse-width oscillators, diodes, and capacitors work together to deliver stable voltages.
Efficiency & Applications: Discover why switching regulators can achieve up to 90% efficiency and where to apply each type of supply in real-world electronic circuits.
Who Should Watch:
Ideal for electronics students, design engineers, and hobbyists seeking a clear, practical guide to designing reliable power supplies for any DC-powered system.
In LDM, We are The Serendipity & Synchronicity of Mind, Body, and Spirit. Our mission: To always maintain union and Chi balance in all projects and courses taught.
♥♥ Yoga is the Umbrella to many related jobs & careers. L.D.M (est 2005), Mia Resorts (est 2010). Departments and Projects rotates
A 2nd Free workshop/Spring Session
REiki - Yoga Money
Session 2
Reiki can clear and heal
anything.
Reiki can be used on objects, animals, situations, remotely, and time/space. This goes into advanced Reiki.
Beyond Basics - Yoga:
—Yoga similar to the arts and fitness can be very healing and therapeutic. The poses, breathing, meditations, and psychology, all contribute to healing many illness aiding remission over time.
Yoga in 2025, has truly evolved and still expanding. As our technology (AI) advances so does many careers on the map featuring Yoga.
(See Presentation for all sections, THX)
Reiki Yoga and Your Money:
I said this within my Blog to my Loyalz, Money is Energy. This is an ongoing topic but there’s updates.
Energy is the new currency. It’s why we get drained so fast. We live in a vampire world for energy resources.
So we have to find creative ways to attract more of this energy. The energy has to be inviting vs repelled. It has to flow effortlessly vs blocked. Sometimes we do this or others around us/environmental.
Practice using Your Creativity:
I personally love art and anything fantasy. However; not all individuals are artists or use their imaginations. When we were children, most of us did this regularly. But, in adulting we assume it’s over and we move on lol. This can really hurt our changes of being creative. Especially in meditations for manifesting. We have to practice our visual skills. The energy is real.
(See Presentation for all sections, THX)
Don’t be shy. Any gift amount helps.
We are a mature 2 businesses operating within Cyberspace. We have since 2007. We started LDM HQ in 2005, Ann Arbor MI US.
To Donate/Tip/Love Offerings:
♥¸.•♥ ♥¸.•♥
- https://ko-fi.com/ldmmia
- CashApp: $ldmmia2 or https://ldmchapels.weebly.com
Remote office/studio located SE. Metro, Mich., US.
Formerly Mount Pleasant, Mid Mich Recent Yrs.
Public Social:
https://www.instagram.com/chelleofsl/
https://x.com/OnlineDrLeZ
Team Chapel: https://ldmchapels.weebly.com
How to Customize Your Financial Reports & Tax Reports With Odoo 17 AccountingCeline George
The Accounting module in Odoo 17 is a complete tool designed to manage all financial aspects of a business. Odoo offers a comprehensive set of tools for generating financial and tax reports, which are crucial for managing a company's finances and ensuring compliance with tax regulations.
Vitamins Chapter-7, Biochemistry and clinical pathology, D.Pharm 2nd yearARUN KUMAR
Definition and classification with examples
Sources, chemical nature, functions, coenzyme form, recommended dietary requirements, deficiency diseases of fat- and water-soluble vitamins
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...Celine George
Analytic accounts are used to track and manage financial transactions related to specific projects, departments, or business units. They provide detailed insights into costs and revenues at a granular level, independent of the main accounting system. This helps to better understand profitability, performance, and resource allocation, making it easier to make informed financial decisions and strategic planning.
APPLIED PSYCHOLOGY IN NURSING (UNIT - VIII TO XVII)SMRITIKANA GORAI
Applied psychology is defined as the branch of psychology that applies psychological theories, principles, and techniques to practical problems in various settings, such as education, industry, healthcare, sports, and law enforcement. It aims to use psychological knowledge to improve the quality of life for individuals, organizations, and communities.
A measles outbreak originating in West Texas has been linked to confirmed cases in New Mexico, with additional cases reported in Oklahoma and Kansas. The current case count is 739 from Texas, New Mexico, Oklahoma, and Kansas. 71 individuals have required hospitalization, and 3 deaths, 2 children in Texas and one adult in New Mexico. These fatalities mark the first measles-related deaths in the United States since 2015 and the first pediatric measles death since 2003.
The YSPH Virtual Medical Operations Center Briefs (VMOC) were created as a service-learning project by faculty and graduate students at the Yale School of Public Health in response to the 2010 Haiti Earthquake. Each year, the VMOC Briefs are produced by students enrolled in Environmental Health Science Course 581 - Public Health Emergencies: Disaster Planning and Response. These briefs compile diverse information sources – including status reports, maps, news articles, and web content– into a single, easily digestible document that can be widely shared and used interactively. Key features of this report include:
- Comprehensive Overview: Provides situation updates, maps, relevant news, and web resources.
- Accessibility: Designed for easy reading, wide distribution, and interactive use.
- Collaboration: The “unlocked" format enables other responders to share, copy, and adapt seamlessly.
The students learn by doing, quickly discovering how and where to find critical information and presenting it in an easily understood manner.
INTRO TO STATISTICS
INTRO TO SPSS INTERFACE
CLEANING MULTIPLE CHOICE RESPONSE DATA WITH EXCEL
ANALYZING MULTIPLE CHOICE RESPONSE DATA
INTERPRETATION
Q & A SESSION
PRACTICAL HANDS-ON ACTIVITY
High-performance liquid chromatography (HPLC) is a sophisticated analytical technique used to separate, identify, and quantify the components of a mixture. It involves passing a sample dissolved in a mobile phase through a column packed with a stationary phase under high pressure, allowing components to separate based on their interaction with the stationary phase.
Separation:
HPLC separates components based on their differing affinities for the stationary phase. The components that interact more strongly with the stationary phase will move more slowly through the column, while those that interact less strongly will move faster.
Identification:
The separated components are detected as they exit the column, and the time at which each component exits the column can be used to identify it.
Quantification:
The area of the peak on the chromatogram (the graph of detector response versus time) is proportional to the amount of each component in the sample.
Principle:
HPLC relies on a high-pressure pump to force the mobile phase through the column. The high pressure allows for faster separations and greater resolution compared to traditional liquid chromatography methods.
Mobile Phase:
The mobile phase is a solvent or a mixture of solvents that carries the sample through the column. The composition of the mobile phase can be adjusted to optimize the separation of different components.
Stationary Phase:
The stationary phase is a solid material packed inside the column that interacts with the sample components. The type of stationary phase is chosen based on the properties of the components being separated.
Applications of HPLC:
Analysis of pharmaceutical compounds: HPLC is widely used for the analysis of drugs and their metabolites.
Environmental monitoring: HPLC can be used to analyze pollutants in water and soil.
Food chemistry: HPLC is used to analyze the composition of food products.
Biochemistry: HPLC is used to analyze proteins, peptides, and nucleic acids.
GDGLSPGCOER - Git and GitHub Workshop.pptxazeenhodekar
This presentation covers the fundamentals of Git and version control in a practical, beginner-friendly way. Learn key commands, the Git data model, commit workflows, and how to collaborate effectively using Git — all explained with visuals, examples, and relatable humor.
In this ppt I have tried to give basic idea about Diabetic peripheral and autonomic neuropathy ..from Levine textbook,IWGDF guideline etc
Hope it will b helpful for trainee and physician
How to Open a Wizard When Clicking on the Kanban Tile in Odoo 18Celine George
In the Odoo backend, Kanban views offer an intuitive, visual way of managing tasks, projects, and workflows. Kanban views are just like a card type of rectangular view which we can get the major details of the model in which it is designed.
This presentation was provided by Bob Liu of the University of Arizona, during the fourth session of the NISO training series "Accessibility Essentials." Session Four: An Introduction to Inclusive Design, was held April 24, 2025.
Multi-currency in odoo accounting and Update exchange rates automatically in ...Celine George
Most business transactions use the currencies of several countries for financial operations. For global transactions, multi-currency management is essential for enabling international trade.
Envenomation is the process by which venom is injected by the bite or sting of a venomous animal such as a snake, scorpion, spider, or insect. Arthropod bite is nothing but a sharp bite or sting by ants, fruit flies, bees, beetles, moths, or hornets. Though not a serious condition, arthropod bite can be extremely painful, with redness and mild to severe swelling around the site of the bite
Chapter 8. Strategy Evaluation, Control, and Strategic Leadership.pdfRommel Regala
This course provides students with a comprehensive understanding of strategic management principles, frameworks, and applications in business. It explores strategic planning, environmental analysis, corporate governance, business ethics, and sustainability. The course integrates Sustainable Development Goals (SDGs) to enhance global and ethical perspectives in decision-making.
Chapter 8. Strategy Evaluation, Control, and Strategic Leadership.pdfRommel Regala
CSS Font & Text style
1. WDS
CS KKU
Font
C S S & H T M L
322432 Web Design Technology
By Yaowaluck Promdee, Sumonta Kasemvilas
Web Design Technology | 2015 1
2. Web Design Technology | 2015 2
WDS
CS KKU
Index
• Unit Style Sheet
• CSS - Fonts
• Example
• Assignment
3. Web Design Technology | 2015 3
WDS
CS KKU
Unit Style Sheet
Relative Length
• em – font size of element
• ex- height of element’s font
• percent- consists of a number
immediately followed by percent
sign ‘%’
4. Web Design Technology | 2015 4
WDS
CS KKU
Unit Style Sheet (Cont.)
Absolute Length
• in (inches; 1in=2.54cm =72pt =6pc)
Ex. 2in, 1.5in
• cm (centimeters; 1cm=10mm) Ex. 2cm, 1.11cm
• mm (millimeters) Ex. 50mm, 0.8mm
• pt (points; 1pt=1/72in, 10pt = 12px) Ex.12pt, 20pt
• pc (picas; 1pc=12pt) Ex. 1pc, 2pc
• pixel (px) : pixel 1px is equal to 1/96th of 1in
5. Web Design Technology | 2015 5
WDS
CS KKU
Recommended Occasional use
Not
recommended
Screen em, px, % ex pt, cm, mm, in, pc
Print em, cm, mm, in, pt,
pc, %
ex, px
a different set of units for display on screen than for printing on paper. The
following table gives the recommended use:
6. Example
Web Design Technology | 2015 6
WDS
CS KKU
h1 { line-height: 1.2em; }
h1 { font-size: 1.2em; }
h1 { margin: 0.5in; } /* inches */
h2 { line-height: 3cm; } /* centimeters */
h3 { word-spacing: 4mm; } /* millimeters */
h4 { font-size: 12pt; } /* points */
h4 { font-size: 1pc; } /* picas */
p { font-size: 12px; } /* px */
means that the line height of h1 elements will be 20%
greater than the font size of h1 element.
means that the font size of h1 elements will be 20% greater than
the computed font size inherited by h1 elements.
9. Web Design Technology | 2015 9
WDS
CS KKU Difference Between Serif and Sans-serif Fonts
10. Web Design Technology | 2015 10
WDS
CS KKU CSS-Font
Property Description Values
font-family Specifies the font family
for text
Ex. Arial, Helvetica,
sans-serif
font-size Specifies the font size of
text
xx-small, x-small, small,
medium, large, x-large,
xx-large, smaller, larger,
18px, 70%, 150%
11. Web Design Technology | 2015 11
WDS
CS KKU CSS-Font (cont.)
Property Description Values
font-style The font-style property is mostly
used to specify italic text.
normal
italic
oblique
font-variant In a small-caps font, all lowercase
letters are converted to uppercase
letters.
normal
Small-Caps
font-weight The font-weight property sets how
thick or thin characters in text
should be displayed.
normal
bold
bolder
lighter
100
200
12. Web Design Technology | 2015 12
WDS
CS KKU
CSS-Font (cont.)
Font Size
The font-size property sets the size of the text.
p {
font-size: 0.875em; /* 14px/16=0.875em */
}
xx-small, x-small, small,
medium, large, x-large,
xx-large, smaller, larger,
18px, 70%, 150%
13. Web Design Technology | 2015 13
WDS
CS KKU
CSS-Font (cont.)
Font Style
• normal - The text is shown normally
• italic - The text is shown in italics
• oblique - The text is "leaning" (oblique is very similar to italic, but less
supported)
This is a paragraph in normal style.
This is a paragraph in italic style.
This is a paragraph in oblique style.
p.normal { font-style: normal;}
14. Web Design Technology | 2015 14
WDS
CS KKU
CSS-Font (cont.)
Font Family
The font family of a text is set with the font-family property.
p {
font-family: "Times New Roman", Times, serif;
}
p.font1 {
font-family: "Times New Roman", Times, serif; }
p.font2 {
font-family: Arial, Helvetica, sans-serif;}
Example1
Result
15. Web Design Technology | 2015 15
WDS
CS KKU
CSS-Font
Web safe fonts
These fonts make up a group of a select few fonts that are available
on most computers.
@font-face {
font-family: myFirstFont;
src: url(sansation_light.woff);
}
h1 {
font-family: “myFristFont", sans-serif;
}
https://www.web-font-generator.com/
Link web font generator
https://www.google.com/fonts
http://www.flaticon.com/font-face
16. Web Design Technology | 2015 16
WDS
CS KKU
Different Font Formats
TrueType Fonts (TTF) is the most common font format for both the Mac OS and Microsoft
Windows operating systems.
OpenType Fonts (OTF)
OpenType is a format for scalable computer fonts. It was built on TrueType, and is a
registered trademark of Microsoft.
The Web Open Font Format (WOFF)
WOFF is a font format for use in web pages. It was developed in 2009, and is now a W3C
Recommendation.
SVG Fonts/Shapes
SVG fonts allow SVG to be used as glyphs when displaying text. The SVG 1.1
specification define a font module that allows the creation of fonts within an SVG
document.
Embedded OpenType Fonts (EOT)
EOT fonts are a compact form of OpenType fonts designed by Microsoft for use as
embedded fonts on web pages.
18. Text
322432-1/2014
Property Description Values
color The color property is used to set the color
of the text
- a HEX value - like "#ff0000"
- an RGB value - like
"rgb(255,0,0)"
- a color name - like "red"
direction The direction property specifies the text
direction/writing direction
direction: ltr|rtl|initial|inherit;
line-height The line-height property specifies the line
height.
line-height: normal|number|
length|initial|inherit;
letter-spacing The letter-spacing property increases or
decreases the space between characters
in a text.
letter-spacing: normal|length|
initial|inherit;
text-align The text-align property specifies the
horizontal alignment of text in an element.
text-align: left|right|center|
justify|initial|inherit;
http://www.w3schools.com/
WDS
CS KKU
19. Text
Property Description Values
text-decoration The text-decoration property specifies
the decoration added to text.
text-decoration: none|
underline| overline| line-
through|initial|inherit;
text-indent The text-indent property specifies the
indentation of the first line in a text-
block.
text-indent: length |initial |
inherit;
text-transform The text-transform property controls the
capitalization of text
None | capitalize | uppercase |
lowercase | initial | inherit
white-space The white-space property specifies how
white-space inside an element is
handled.
Normal | nowrap | pre | pre-
line | pre-wrap | initial | inherit
word-spacing The word-spacing property increases or
decreases the white space between
words.
word-spacing: normal | length |
initial | inherit
http://www.w3schools.com/
WDS
CS KKU
Web Design Technology | 2015
20. Web Design Technology | 2015 20
WDS
CS KKU
CSS3-Font/Text
• text-overflow
• word-wrap
• word-break
The CSS3 text-overflow property specifies how overflowed
content that is not displayed should be signaled to the
user.
p.test1 {
white-space: nowrap;
width: 200px;
border: 1px solid #000000;
overflow: hidden;
text-overflow: clip;
}
p.test2 {
white-space: nowrap;
width: 200px;
border: 1px solid #000000;
overflow: hidden;
text-overflow: ellipsis;
}
<p>The following two paragraphs contains a long text that will not fit in the box.</p>
<p>text-overflow: clip:</p>
<p class="test1">This is some long text that will not fit in the box</p>
21. Web Design Technology | 2015 21
WDS
CS KKU
CSS3-Font/Text
The CSS3 word-wrap property allows long words to be able to be broken and wrap onto
the next line.
• word-wrap
p.test {
width: 11em;
border: 1px solid #000000;
word-wrap: break-word;
}
<p class="test"> This
paragraph contains a very
long word:
thisisaveryveryveryveryveryve
rylongword. The long word
will break and wrap to the
next line.</p>
22. Web Design Technology | 2015 22
WDS
CS KKU
CSS3-Font/Text
p.test1 {
width: 140px;
border: 1px solid #000000;
word-break: keep-all; }
p.test2 {
width: 140px;
border: 1px solid #000000;
word-break: break-all;
}
<p class="test1">This
paragraph contains some
text. This line will-break-at-
hyphens.</p>
<p class="test2">This
paragraph contains some
text. The lines will break at
any character.</p>
Specifies line breaking rules for non-CJK scripts
• word-break
26. Web Design Technology | 2015 26
h1>This is using font "impact" size 2em. </h1>
<p class="text2">font-family : Arial, Helvetica, sans-serif <br>
a first character is Big and italic font. <br>
Color blue of first characterbut all content on this paragraph shown
grey color. word spacing:0.5em
</p>
<p class="text3"> I using text indent to show this paragraph. <br>
how to code CSS <span id="text3">and html </span> on this example.
</p>
<footer> web design technology </footer>
HTML CODE
27. Web Design Technology | 2015 27
WDS
CS KKU
Assignment#6
Create a Web page to present “CSS-Font design”
from information provided using
CSS font and text
Grade will be based on your CSS technique and look and feel
of the Web page.
https://onedrive.live.com/view.aspx?resid=F333459734D737E5!1410&app=Word
“CSS-Font design”