Skip to main content

Home/ Learning Library/ Group items tagged Web

Rss Feed Group items tagged

Sunny Jackson

Web archiving - Wikipedia, the free encyclopedia - 0 views

  • saves page and all its images
Sunny Jackson

Help:Wiki markup - Wikipedia, the free encyclopedia - 0 views

  • ==Section headings==
  • ===Subsection===
  • ====A smaller subsection====
  • ...35 more annotations...
  • ;A defined term:
  • an empty line starts a new paragraph
  • :A colon at the start of a line ::causes the line to be indented
  • <blockquote> The '''blockquote''' tag will indent both margins when needed instead of the left margin only as the colon does. </blockquote>
  • <div class="center" style="width:auto; margin-left:auto; margin-right:auto;">Centered text</div>
  • * ''Unordered [[Help:List|list]]s''
  • # ''Numbered lists''
  • hide stuff in parentheses
  • ;Definition lists: Terms and their definitions.
  • <poem>...</poem>
  • <blockquote>...</blockquote>
  • To ''italicize text'', just put 2 apostrophes on each side.
  • 3 apostrophes will '''bold the text'''
  • 5 apostrophes for '''''bold italics'''''
  • <small>small text</small>
  • <tt>arrow →</tt>
  • A new line marks the end of the list
  • Redirect to an article. #REDIRECT [[
  • [[File:wiki.png]]
  • [[File:wiki.png|alt=Puzzle globe logo]]
  • [[File:wiki.png|link=Wikipedia]]
  • {{cite book}}
  • {{cite web}}
  • |isbn=
  • |url=
  • |title=
  • |author
  • {{citation needed}}
  • <del>strike out deleted material</del>
  • <ins>underline new material</ins>
  • {{du|Double underlining}}
  • <s>strike out deleted material</s>
  • <u>underline new material</u>
  • * Unordered list
  • <!-- An example of hidden comments This won't be visible except in "edit" mode. -->
Sunny Jackson

Lucene - Wikipedia, the free encyclopedia - 0 views

  • information retrieval software library
  • suitable for any application which requires full text indexing and searching capability
  • utility in the implementation of Internet search engines and local, single-site searching
  • ...7 more annotations...
  • At the core of Lucene's logical architecture is the idea of a document containing fields of text
  • Text from PDFs, HTML, Microsoft Word, and OpenDocument documents, as well as many others (except images), can all be indexed as long as their textual information can be extracted
  • independent of the file format
  • indexing and search library
  • web crawling and HTML parsing
  • search server
  • Java Search Engine Framework
fictionalworlds

Excel 1: Creating a Worksheet and an Embedded Chart - 0 views

  • A requirements document includes a needs statement, source of data, summary of calculations, and any other special requirements for the worksheet, such as charting and Web support.
  • The recommended methodology for creating worksheets includes: (1) analyze requirements (supplied in a requirements document); (2) design solution; (3) validate design; (4) implement design; (5) test solution; and (6) document solution.
Sunny Jackson

HTML img tag - 0 views

  • width=
    • Sunny Jackson
       
      optional
  • height=
    • Sunny Jackson
       
      optional
  • <img src="
    • Sunny Jackson
       
      required
  • ...8 more annotations...
  • " alt="
    • Sunny Jackson
       
      required
  • alt text Specifies an alternate text for an image
    • Sunny Jackson
       
      required
  • In HTML the <img> tag has no end tag
  • In XHTML the <img> tag must be properly closed
  • The <img> tag has two required attributes: src and alt
  • height pixels Specifies the height of an image
    • Sunny Jackson
       
      optional
  • src URL Specifies the URL of an image
    • Sunny Jackson
       
      required
  • width pixels Specifies the width of an image
    • Sunny Jackson
       
      optional
Sunny Jackson

CSS Web Safe Fonts - 0 views

Sunny Jackson

Introduction to HTML - 0 views

  • <!DOCTYPE html> <html> <body>
  • <tagname>content</tagname>
  • <html>
    • Sunny Jackson
       
      The end tag is written like the start tag, with a forward slash before the tag name
    • Sunny Jackson
       
      an HTML element is everything between the start tag and the end tag, including the tags
  • ...7 more annotations...
  • <body>
  • <h1>This a heading</h1>
  • <p>This is a paragraph.</p>
  • <p>This is another paragraph.</p>
  • </body>
  • </html>
  • The <!DOCTYPE> declaration helps the browser to display a web page correctly.
Sunny Jackson

HTML Styles - 0 views

  • margin-left:
  • color:
  • <!DOCTYPE html> <html>
  • ...16 more annotations...
  • <body style=
  • <p style=
  • background-color:
  • </body> </html>
  • font-family:
  • <h1 style=
  • font-size:
  • text-align:
  • Internal styles are defined in the <head> section of an HTML page, by using the <style> tag
  • <head> <style type="text/css">
  • body {
  • ;} </style> </head>
  • With an external style sheet, you can change the look of an entire Web site by changing one file
  • An external style sheet is ideal when the style is applied to many pages
  • Each page must link to the style sheet using the <link> tag. The <link> tag goes inside the <head> section
  • <head> <link rel="stylesheet" type="text/css" href="mystyle.css"> </head>
Sunny Jackson

JavaScript Where To - 0 views

  • JavaScripts in a page will be executed immediately while the page loads into the browser.
  • Scripts to be executed when they are called, or when an event is triggered, are placed in functions.
  • put all your functions in the head section, this way they are all in one place and do not interfere with page content.
  • ...8 more annotations...
  • <head> <script type="text/javascript"> function message() { alert("This alert box was called with the onload event"); } </script> </head>
  • Scripts placed in the body section are often used to display page content while the page loads.
  • JavaScript can also be placed in external files.
  • External JavaScript files often contains code to be used on several different web pages.
  • External JavaScript files have the file extension .js
  • External script cannot contain the <script></script> tags!
  • To use an external script, point to the .js file in the "src" attribute of the <script> tag:
  • <script type="text/javascript" src="xxx.js"></script>
Sunny Jackson

HTML Colors - 0 views

‹ Previous 21 - 37 of 37
Showing 20 items per page