Sample XHTML Code

Total Page:16

File Type:pdf, Size:1020Kb

Sample XHTML Code Sample XHTML Code Docs version: 2.0 Version date 7/29/2009 Contents • Introduction • Home page • General page structure • Tabbed content • Navigation lists • iPhone action links Introduction These code samples illustrate how we designed and developed the user for the MIT Mobile Web. These code samples are taken from the original XHTML design mockups which were the basis of the final implementation of the live MIT Mobile Web. We’re presenting these design mockups here because showing the final functional code with its back-end integration would make it harder to read the actual markup as the web browser sees it – which is what determines what the end user actually sees and interacts with. The XHTML and CSS generated by the functional code is in any case very close to these original design mockups. We’re not presenting every page for every module here. Rather, we’re showing representative pages that illustrate user-interface patterns that appear throughout the MIT Mobile Web. After studying these code snippets and the patterns they represent, you should be able to easily understand how specific pages in the MIT Mobile Web were built, as well as how to go about building new page layouts sharing a consistent basic structure, function and building blocks. For background on why we optimized the UI for three different categories of devices, please read the Introduction to the Mobile Web document. Commented source code, images and other assets for the entire MIT Mobile Web – including functional code for back-end integration – is online as a SourceForge project at http://sourceforge.net/projects/mitmobileweb/. Important note: This document is intended for Web designers and client-side developers. As such, its contents, especially the code samples, are intentionally presented as static HTML as it would be rendered into the end-user’s device. The server-side (and, in some cases, client-side) logic that generates this HTML is not discussed here, and is instead the subject of the developer-centric documentation available elsewhere in this open- source project. Homepage The homepage provides quick and simple access to the major modules within the MIT Mobile Web. Homepage – Webkit For the Webkit versions of the homepage, we present the homepage as a space-efficient and touch- friendly grid of labeled icons. From left to right: iPhone, Palm Pre, Android. Note that only the iPhone, which supports certificates for authentication, shows the TechCASH (cashless payment system) and MIT Certificates icons; the Pre and Android (which do not yet support certificates) do not. HTML preamble. <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" "http://www.w3.org/TR/xhtml-basic/xhtml- basic11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="content-type" content="application/xhtml+xml" /> The viewport tag governs how content is initially scaled and whether it can be rescaled and reflowed: <meta name="viewport" id="viewport" content="width=device-width, user-scalable=no,initial- scale=1.0,maximum-scale=1.0" /> Link to the global platform-specific stylesheet (styles/webkit.css): <meta http-equiv="Content-Script-Type" content="text/javascript"> <title>MIT Mobile Web</title> <link rel="stylesheet" type="text/css" href="/styles/webkit.css" /> The optional apple-touch-icon tag lets you define a graphic that will appear on the iPhone device’s main homepage if you tap the ‘+’ button in the browser toolbar and choose to add the site to home: <link rel="apple-touch-icon" href="/images/webkit/icon.png" /> Inline styles were used extensively here only because this is the only page where these are used, and we wanted to minimize the number of separate files to download. These styles format the grid of icons and other homepage-specific formatting: <style type="text/css"> #homegrid { margin: 0 auto; padding: 0; margin-left: 2px; } #homegrid div { position: relative; width: 78px; height: 92px; margin: 0; padding: 0; float: left; font-size: 13px; line-height: 14px; text-align: center; vertical-align: top; } #homegrid a { display: block; color: #303336; text-decoration: none; padding: 8px 5px; } #homegrid a img { margin-bottom: 1px; } .intro { margin-bottom: 0; text-align: center; } .fineprint { font-size: 10px; color: #404649; } h1 { font-size: 32px; line-height: 32px; margin: 16px 15px 13px 12px; color: #112; } #logo { padding-right: 14px; } #new { position: absolute; top: -13px; right: -9px; width: 80px; height: 80px; background-image: url(images/newbig.png); background-repeat: no-repeat; color: #fff; font-size: 12px; line-height: 13px; text-align: center; overflow: hidden; } #new a { display: block; width: 50px; height: 50px; padding: 0; text-decoration: none; color: #fff; position: absolute; top: 19px; right: 10px; } #new a .newlabel { display: block; font-size: 9px; line-height: 9px; color: #ffcece; } #footer { margin-top: 0; padding-top: 24px; text-align: center; clear: both; } .badge { position: absolute; right: 10px; top: 2px; width: 24px; height: 24px; padding-top: 5px; font-size:12px; font-weight: bold; text-align: center; color: #fff; background-image: url(/images/webkit/badge.png); background-repeat: no-repeat; } </style> The iPhone web browser by default displays its titlebar and location at the top of the screen. This scrolls away along if the user scrolls a long page down. To reclaim this screen space, we have every page in our site automatically scroll to 1px from the top of the body, which effectively hides the titlebar and location and increases the height of the visible page area by 60 pixels. The empty onunload event handler addresses a usability issue where, if the user customizes their homepage settings and returns to the homepage using the browser’s Back button, the homepage may not refresh correctly. <body onload="scrollTo(0,1) onunload=""> Header with MIT branding: <h1><img src="images/mit-logo-home.gif" width="48" height="24" alt="" id="logo" />Mobile Web</h1> Large “What’s New” badge in upper right corner, which only appears if there is a recent announcement: <div id="new"><a href="/about/webkit/new/"><span class="newlabel">NEW:</span>Summer Shuttles</a></div> Primary navigation grid, using floated DIVs to create the evenly spaced grid. Whereas the initial build of the MIT Mobile Web used a table here, the page was converted to floating DIVs to better support rotated screens today and other screen resolutions in the future. Whereas the feature-phone and smartphone versions use a secondary navigation list to present the ‘About this Site’ link, here it’s presented as the last of the primary links. Note that certificate-requiring content and links (in this case, the TechCASH and MIT Certificates links) must be hidden from devices that we know not to support certificates (Pre and Android). The required code is not shown here, but can be easily implemented using client- or server-side code. <div id="container"> <div id="homegrid"> <div><a href="/people/webkit/"><img src="images/people.png" width="50" height="50" alt="People Directory" /><br/>People Directory</a></div> <div><a href="/map/webkit/"><img src="images/map.png" width="50" height="50" alt="Map" /><br/>Campus Map</a></div> <div><a href="/shuttletrack/webkit/"><img src="images/shuttletrack.png" width="50" height="50" alt="Shuttle Schedule" /><br/>Shuttle Schedule</a></div> <div><a href="/calendar/webkit/"><img src="images/calendar.png" width="50" height="50" alt="Events Calendar" /><br/>Events Calendar</a></div> <div><a href="/stellar/webkit/"><img src="images/stellar.png" width="50" height="50" alt="Stellar" /><br/>Stellar<br/><span class="fineprint">class info</span></a></div> <div><a href="/libraries/webkit/"><img src="images/libraries.png" width="50" height="50" alt="Libraries" /><br/>Libraries</a></div> <div><a href="/techcash/webkit/"><img src="images/techcash.png" width="50" height="50" alt="Tech Cash" /><br/>TechCASH</a></div> <div><a href="/emergency/webkit/"><img src="images/emergency.png" width="50" height="50" alt="Emergency Info" /><br/>Emergency Info</a></div> <div><a href="/3down/webkit/"><img src="images/3down.png" width="50" height="50" alt="3DOWN" /><br/>3DOWN<br/><span class="fineprint">service status</span></a></div> <div><a href="/careers/webkit/"><img src="images/careers.png" width="50" height="50" alt="Career Services" /><br/>Student Careers</a></div> <div><a href="/links/webkit/"><img src="images/links.png" width="50" height="50" alt="Links" /><br/>Useful<br/>Links</a></div> <div><a href="/sms/webkit/"><img src="images/sms.png" width="50" height="50" alt="SMS" /><br/>MIT SMS Service</a></div> <div><a href="/about/webkit/"><img src="images/certificates.png" width="50" height="50" alt="Certificates" /><br/>MIT Certificates</a></div> <div><a href="http://web.mit.edu"><img src="images/webmitedu.png" width="50" height="50" alt="web.mit.edu" /><br/>Full MIT Website</a></div> <div><a href="/about/webkit/"><img src="images/about.png" width="50" height="50" alt="About" /><br/>About this Site<span class="badge">2</span></a></div> <div><a href="/preferences/webkit/"><img src="images/preferences.png" width="50" height="50" alt="Preferences" /><br/>Customize Home</a></div> </div> <!-- id="homegrid" --> </div> <!-- id="container" --> Within the “About” <div>, there’s an optional <span class="badge">. This places a red badge with a number inside it, indicating the number of unread “What’s New in the MIT Mobile Web” announcements which can be accessed from the “About” page. Sitewide footer, with branding for IS&T (the MIT department responsible for the mobile web): <div id="footer"> <a href="http://web.mit.edu/ist/"><img src="/images/webkit/ist-logo.png" width="35" height="21" alt="IST" /></a>Information Services &amp; Technology </div> </body> </html> Homepage – Touchscreen Like the Webkit category, the Touchscreen category is defined by large touch-driven interfaces.
Recommended publications
  • XHTML Mobile Profile Reference
    XHTML Mobile Profile Reference Version 1.0 Openwave Systems Inc. 1400 Seaport Boulevard Redwood City, CA 94063 USA http://www.openwave.com Part Number XHRF-10-004 October 2001 LEGAL NOTICE Copyright © 1994–2001, Openwave Systems Inc. Portions copyright © 1994–1999, Netscape Communications Corporation. Portions copyright © 1994–1999, Oracle Corporation. All rights reserved. These files are part of the Openwave Software Developer’s Kit (SDK). Subject to the terms and conditions of the SDK License Agreement, Openwave Systems Inc. (“Openwave”) hereby grants you a license to use the SDK software and its related documentation. OPENWAVE MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THE SDK SOFTWARE, INCLUDING, BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES THAT THE SDK SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NONINFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED SOFTWARE IS BORNE BY USER. USER UNDERSTANDS AND ACCEPTS THE SDK SOFTWARE AND ANY SOFTWARE SECURITY FEATURES INCLUDED WITH THE SDK SOFTWARE ARE PROVIDED ON AN “AS IS” BASIS FROM OPENWAVE, AND OPENWAVE DOES NOT WARRANT, GUARANTEE, OR MAKE ANY REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THE SDK SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY, OR OTHERWISE. TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT SHALL OPENWAVE OR ITS SUPPLIERS OR DISTRIBUTORS BE LIABLE FOR ANY DAMAGES RESULTING FROM OR ARISING OUT OF USER’S USE OF THE SDK SOFTWARE, INCLUDING, WITHOUT LIMITATION, ANY DIRECT, INDIRECT, SPECIAL, INCIDENTIAL, OR CONSEQUENTIAL DAMAGES OF ANY KIND INCLUDING WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES.
    [Show full text]
  • An Intruduction to HTML5
    Agenda * What is HTML5 -- Its history and motivation * HTML/XHTML as Human / Machine Readable Format * HTML and its related technologies * Brief summary of the changes * Models of HTML5 * Examples and demonstrations What is HTML5 -- Its history and motivation * W3C and HTML * Brief history of HTML * WHATWG and HTML5 * 'Working Draft' and 'Recommendation' * HTML5 as IDL -- Interface Definition via IDL What is HTML5 - W3C and HTML What is HTML5 - W3C and HTML What is HTML5 - Brief history of HTML HTML is born for 'Scientists' at CERN. First website (from archive@cern) Tim Berners Lee What is HTML5 - Brief history of HTML HTML (1989; CERN) HTML = HyperText Markup Language HTML 1.0 (1993; IETF) HTML 2.0 (1995; W3C) HTML 3.2 (1997; W3C) XML 1.0 (1998) HTML 4.0.1 (1999; W3C) XHTML 1.0 (2000) XHTML Basic 1.0 (2000) XHTML 1.1 (2001) XHTML Basic 1.1 (2008) What is HTML5 - Brief history of HTML HTML 4.0.1 (1999; W3C) XML 1.0 (1998) XHTML 1.0 (2000) XHTML 1.1 (2001) Extension to HTML4 (2003;Opera) PositionPaper (2004;Opera/Mozilla) What is HTML5 - Brief history of HTML http://www.w3.org/2004/04/webapps-cdf-ws/papers/opera.html What is HTML5 - Brief history of HTML HTML 4.0.1 (1999; W3C) XML 1.0 (1998) XHTML 1.0 (2000) XHTML 1.1 (2001) Extension to HTML4 (2003;Opera) PositionPaper (2004;Opera/Mozilla) WHATWG (2004;Opera/Mozilla/Apple) What is HTML5 - Brief history of HTML The Web Hypertext Application Technology Working Group (WHATWG) What is HTML5 - Brief history of HTML HTML 4.0.1 (1999; W3C) XML 1.0 (1998) XHTML 1.0 (2000) XHTML 1.1 (2001) Extension
    [Show full text]
  • Web Application Developer's Guide for the Polycom® Soundpoint® IP
    Web Application Developer’s Guide for the Polycom® SoundPoint® IP/SoundStation® IP Family SIP 3.1 August, 2008 Edition 1725-17693-310 Rev. A SIP 3.1 Trademark Information Polycom®, the Polycom logo design, SoundPoint® IP, SoundStation®, SoundStation VTX 1000®, ViaVideo®, ViewStation®, and Vortex® are registered trademarks of Polycom, Inc. Conference Composer™, Global Management System™, ImageShare™, Instructor RP™, iPower™, MGC™, PathNavigator™, People+Content™, PowerCam™, Pro-Motion™, QSX™, ReadiManager™, Siren™, StereoSurround™, V2IU™, Visual Concert™, VS4000™, VSX™, and the industrial design of SoundStation are trademarks of Polycom, Inc. in the United States and various other countries. All other trademarks are the property of their respective owners. Patent Information The accompanying product is protected by one or more U.S. and foreign patents and/or pending patent applications held by Polycom, Inc. © 2008 Polycom, Inc. All rights reserved. Polycom Inc. 4750 Willow Road Pleasanton, CA 94588-2708 USA No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical, for any purpose, without the express written permission of Polycom, Inc. Under the law, reproducing includes translating into another language or format. As between the parties, Polycom, Inc. retains title to, and ownership of, all proprietary rights with respect to the software contained within its products. The software is protected by United States copyright laws and international treaty provision. Therefore, you must treat the software like any other copyrighted material (e.g. a book or sound recording). Every effort has been made to ensure that the information in this manual is accurate. Polycom, Inc. is not responsible for printing or clerical errors.
    [Show full text]
  • HTML5 Audio 1 HTML5 Audio
    HTML5 Audio 1 HTML5 Audio HTML • HTML and HTML5; HTML editor • Dynamic HTML • XHTML • XHTML Basic (Mobile) • XHTML Mobile Profile and C-HTML • HTML element • Span and div • HTML attribute • Character encodings; Unicode • Language code • Document Object Model • Browser Object Model • Style sheets and CSS • Font family and Web colors • HTML scripting and JavaScript • W3C, WHATWG, and validator • Quirks mode • HTML Frames • HTML5 Canvas, WebGL, and WebCL • HTML5 Audio and HTML5 video • Web storage • Web browser (layout) engine • Comparison of • document markup languages • web browsers • layout engine support for • HTML; Non-standard HTML • XHTML (1.1) • HTML5; HTML5 canvas, • HTML5 media (Audio, Video) • v • t [1] • e HTML5 Audio is a subject of the HTML5 specification, investigating audio input, playback, synthesis, as well as speech to text in the browser. HTML5 Audio 2 <audio> element The <audio> element represents a sound, or an audio stream.[2] It is commonly used to play back a single audio file within a web page, showing a GUI widget with play/pause/volume controls. Supported browsers • PC • Google Chrome • Internet Explorer 9 • Mozilla Firefox 3.5 • Opera 10.5 • Safari 3.1[3] • Mobile • Android Browser 2.3 • Blackberry Browser • Google Chrome for Android • Internet Explorer Mobile 9 • Mobile Safari 4 • Mozilla Firefox for Android • Opera Mobile 11 • Tizen Supported audio codecs This table documents the current support for audio codecs by the <audio> element. Browser Operating Formats supported by different web browsers system Ogg
    [Show full text]
  • (X)HTML Best Practice Cheat Sheet.Pdf 2007-08-13 17:49 236 KB
    (X)HTML Best Practice Cheat Sheet All elements are sorted ]able ed T within their /[ lac l y ]ep t groups in ish) [R ues prioritized tional sibili eset eset al/ ance t t s r order. ic nline(- m e er iss r ansitiona am asic ] am r r I or s r ] eaning Recommended transi t Mobile Acc 0 st 0 f 1 B 0 N ice 1 stric 1 f 5.0 h)/[ /[ m appea (X)HTML 2 01 & 1. 1.0 1. 1.1 1. 1.1 2. -is ic 4.0 4.0 act versions are L L L L ML k( ible led pr notes ble brow M ML M ML M ML M T is ty mint-colored. ML 3. ML ML 4. ML T T T O ]loc mant s T T T T HT HT HT HT nv sability est n X)H ] H H H H X XH X XH X XH X ( [B [I Se U B SE Nota U Element Standards Information Document structure <html> N Viewport in XHTML <head> I The main Viewport in HTML. <body> B N content of the Margin: 8px; document The Highly ranked and Make unique for <title> I documents will be the link- Text on the title-bar every page title or name text Only ”name = <meta> I 'description'” is useful Indicates explicit relationship between this <link> I document and other resources. As such there are many good uses! External style <style> I sheets are usually best Unobtrusive Test for Keep scripts Script may have <script> I DOM-scripts, capabilities, not external output please! browsers! Unnecassary with unobtrusive Not ignored by true <noscript> BI I scripting techniques! Forbidden in s XML parsers! XHTML 5.
    [Show full text]
  • An Introduction to Character Encoding Issues in the Mobile Web
    An introduction to character encoding 1 (12) issues in the mobile Web Eduardo CASAIS TECHNICAL PAPER 2008-12-08 AN INTRODUCTION TO CHARACTER ENCODING ISSUES IN THE MOBILE WEB Eduardo Casais areppim AG Bern, Switzerland 1. A LINGERING ISSUE Character encoding – the binary representation of every symbol in documents delivered to mobile terminals – is often treated as an afterthought in mobile Web development. Many developers simply rely upon ISO-8859-1; not a bad choice, as this encoding efficiently supports all important Western European languages, has long been available in the mobile and fixed Internet, is widespread among low-end phones, and is the default encoding in the HTTP standard. Astute software engineers prefer UTF-8; this encoding supports Unicode, and hence the widest range of languages and associated glyphs – great for multilingual “world” applications. It is also a default for several application formats, most popular in the WWW, and available in newer mobile terminals. Even in Japan, i-mode gateways may take care of the complex mapping from UTF-8 to Shift_JIS-only capable terminals. Producing content in one of these two major encodings and configuring a WWW server to advertise the content type and encoding properly generally suffices for mainstream applications. There can be complications however – especially when dealing with advanced functions or developing for exotic markets – and it is preferable to be aware of them. The article examines the situation in the context of mobile browsing. 2. THE DOCUMENT CHARACTER SET Let us briefly recapitulate some concepts. A character set is a repertoire of abstract symbols (e.g.
    [Show full text]
  • Track 3: Extending Blackberry Beyond Email Extending Web-Based Applications with the Blackberry Browser Agenda
    Track 3: Extending BlackBerry Beyond Email Extending Web-Based Applications with the BlackBerry Browser Agenda • Introduction to BlackBerry® Browser • Mark-Up Language, Security and Connectivity Options • Optimizing Web Content for BlackBerry • Server-Side PUSH Applications • What’s New in BlackBerry Enterprise Server™ and BlackBerry Browser v4.0 •Demo BlackBerry Solution: Architecture Recap .NET Corporate Application Servers J2EE Corporate Application Servers HTTP(S) BlackBerry Corporate Systems Enterprise (ERP, CRM, Databases, etc.) Server Web Servers (IIS, Apache-Tomcat) Extending Browser-Based Solutions to BlackBerry From the developer’s perspective… HTTP HTML / WML BlackBerry Web / App Browser 3DES Encryption Server Push and Pull of Data Network-independent BlackBerry Browser Overview • Main BlackBerry Browser versions include: – BlackBerry Browser v3.6 and v3.7 • All GPRS, iDEN and CDMA Java™-enabled BlackBerry handhelds • Support for color and monochrome screen handhelds – BlackBerry Browser v3.8 and v4.0 • Upgrade from BlackBerry Browser v3.7 with new features (JavaScript, Offline Forms, etc.) – RIM Browser v2.5 and v2.6 • RIM 850™, RIM 857™, RIM 950™ and RIM 957™ handhelds • DataTAC and Mobitex wireless networks in North America Mark-up Connectivity Wireless Browser-Based Security User Experience Solutions in the Enterprise Dynamic Content Push • Key questions for consideration: 1. What mark-up languages are supported? 2. How will I connect to my corporate web servers? 3. Is security important? If so, how can I address this? 4.
    [Show full text]
  • Chapter 7: HTML/XHTML I
    7. HTML and XHTML | Hypertext Markup Language, Part I 7-1 Chapter 7: HTML/XHTML I References: • Erik Wilde: World Wide Web | Technische Grundlagen. Springer, 1999, ISBN 3-540-64700-7, 641 Seiten. • Eric Ladd, Jim O'Donnell, et al.: Using HTML 4, XML, and Java 1.2, Platinum Edition. QUE, 1999, ISBN 0-7897-1759-X, 1282 pages. • Rainer Klute: Das World Wide Web. Addison-Wesley, 1996, ISBN: 389319763X. • Dave Raggett, W3C: HTML 3.2 Reference Specification. [http://www.w3.org/TR/REC-html32.html] • Dave Raggett, Arnaud Le Hors, Ian Jacobs (Eds.): HTML 4.01 Specification. W3C, Dec 24, 1999. [http://www.w3.org/TR/html4/] • User's Guide to ISO/IEC 15445:2000 HyperText Markup Language (HTML) [http://www.cs.tcd.ie/15445/UG.html] • XHTML [tm] 1.0: The Extensible HyperText Markup Language. W3C, Jan 26, 2000. [http://www.w3.org/TR/xhtml1] • Stefan M¨unz:HTML-Dateien selbst erstellen | SELFHTML. [http://www.netzwelt.com/selfhtml/] [http://www.teamone.de/selfaktuell/] • Ian Graham: Introduction to HTML. [http://www.utoronto.ca/webdocs/HTMLdocs/NewHTML/htmlindex.html] • NCSA Beginner's Guide to HTML (no longer maintained). [http://www.ncsa.uiuc.edu/General/Internet/WWW/] Stefan Brass: Grundlagen des World Wide Web Universit¨atHalle, 2016 7. HTML and XHTML | Hypertext Markup Language, Part I 7-2 Objectives After completing this chapter, you should be able to: • develop web pages in strict HTML 4.0/XHTML 1.0. • write syntactically correct HTML/XHTML. • read the HTML and XHTML specifications. • evaluate whether something is possible in HTML. • write a short paragraph about differences between HTML versions.
    [Show full text]
  • Xep-0071: Xhtml-Im
    XEP-0071: XHTML-IM Peter Saint-Andre mailto:xsf@stpeter:im xmpp:peter@jabber:org http://stpeter:im/ 2018-03-08 Version 1.5.4 Status Type Short Name Deprecated Standards Track xhtml-im This specification defines an XHTML 1.0 Integration Set for use in exchanging instant messages that contain lightweight text markup. The protocol enables an XMPP entity to format a message using a small range of commonly-used HTML elements, attributes, and style properties that are suitable for use in in- stant messaging. The protocol also excludes HTML constructs that may introduce malware and other vulnerabilities (such as scripts and objects) for improved security. Legal Copyright This XMPP Extension Protocol is copyright © 1999 – 2020 by the XMPP Standards Foundation (XSF). Permissions Permission is hereby granted, free of charge, to any person obtaining a copy of this specification (the ”Specification”), to make use of the Specification without restriction, including without limitation the rights to implement the Specification in a software program, deploy the Specification in a network service, and copy, modify, merge, publish, translate, distribute, sublicense, or sell copies of the Specifi- cation, and to permit persons to whom the Specification is furnished to do so, subject to the condition that the foregoing copyright notice and this permission notice shall be included in all copies or sub- stantial portions of the Specification. Unless separate permission is granted, modified works that are redistributed shall not contain misleading information regarding the authors, title, number, or pub- lisher of the Specification, and shall not claim endorsement of the modified works by the authors, any organization or project to which the authors belong, or the XMPP Standards Foundation.
    [Show full text]
  • HTML and CSS Tutorial Chapter 1: Getting Started
    HTML and CSS Tutorial This work is licensed under a Creative Commons License: Attribution 3.0 Unported. You are free: • to Share — to copy, distribute, and transmit the work • to Remix — to adapt the work Under the following conditions: • Attribution. You must attribute the work in the manner specified by the author or licensor. For attribution purposes, the URL to be associated with the work is http://www.goer.org/HTML, and the Title and Author of this work are as follows: “The Pocket HTML Tutorial” Copyright 2012 by Evan Goer. For any reuse or distribution, you must make clear to others the license terms of this work. Any of these conditions can be waived if you get permission from the copyright holder. Your fair use and other rights are in no way affected by the above. This is a human-readable summary of the Legal Code (the full license). Chapter 1: Getting Started Welcome to the world of HTML! If you have never written HTML code before, you should start with this section. If you’ve written HTML before, you should feel free to skip ahead to Chapter 2, Markup Basics. When you’re done with this chapter, you should be able to: • create and alter a simple web page • explain what HTML elements and attributes are • use your browser to help you view and reuse code from other websites Section Summaries The Getting Started chapter contains these sections: 1. Diving In — Demonstrates basic HTML concepts by diving in and creating a simple web page. 2. Structure — Examines document structure: the html element, the head, the title, and the body.
    [Show full text]
  • HTML and CSS COURSE SYLLABUS
    Deccansoft Software Services Html and css Syllabus HTML and CSS COURSE SYLLABUS Overview: HTML and CSS go hand in hand for developing flexible, attractively and user friendly websites. HTML (Hyper Text Markup Language) is used to show content on the page where as CSS is used for presenting the page. HTML describes the structure of a Website semantically along with presentation cues, making it a mark-up language, rather than a programming language. HTML allows images and objects to be embedded and can be used to create interactive forms. Course Objectives: HTML is highly flexible and supported on all browsers. User friendly and an open technology. It give better performance. CSS provides powerful control over the presentation of an HTML document. CSS saves many times as it can be reused in many HTML pages. CSS can be used to make responsive web pages, which are compatible on multiple devices. It can be used to allow the web pages to display differently depending on the screen size or device on which it is being viewed. Pre-requisite / Target Audience: Any beginner who wants to build career as Web designer can take this course. Module 1: Web Programming Introduction In this module, you will learn basic introduction to web development. The fundamental technology used to define the structure of a webpage. Web Development Introduction Module 2: HTML-Introduction In this module, sets the stage, getting you used to important concepts and syntax, looking at applying HTML to text, how to create hyperlinks, and how to use HTML to structure a webpage. History of HTML What you need to do to get going and make your first HTML page What are HTML Tags and Attributes? HTML Tag vs.
    [Show full text]
  • Tutorialspoint HTML.Pdf
    HTML About the Tutorial HTML stands for Hyper Text Markup Language, which is the most widely used language on Web to develop web pages. HTML was created by Berners-Lee in late 1991 but "HTML 2.0" was the first standard HTML specification which was published in 1995. HTML 4.01 was a major version of HTML and it was published in late 1999. Though HTML 4.01 version is widely used but currently we are having HTML-5 version which is an extension to HTML 4.01, and this version was published in 2012. Audience This tutorial is designed for the aspiring Web Designers and Developers with a need to understand the HTML in enough detail along with its simple overview, and practical examples. This tutorial will give you enough ingredients to start with HTML from where you can take yourself at higher level of expertise. Prerequisites Before proceeding with this tutorial you should have a basic working knowledge with Windows or Linux operating system, additionally you must be familiar with: Experience with any text editor like notepad, notepad++, or Edit plus etc. How to create directories and files on your computer. How to navigate through different directories. How to type content in a file and save them on a computer. Understanding about images in different formats like JPEG, PNG format. Copyright & Disclaimer Copyright 2015 by Tutorials Point (I) Pvt. Ltd. All the content and graphics published in this e-book are the property of Tutorials Point (I) Pvt. Ltd. The user of this e-book is prohibited to reuse, retain, copy, distribute or republish any contents or a part of contents of this e-book in any manner without written consent of the publisher.
    [Show full text]