Skip to main content

Home/ Learning Library/ Group items tagged HTML

Rss Feed Group items tagged

Sunny Jackson

HTML Images - 0 views

  • The <img> tag is empty, which means that it contains attributes only, and has no closing tag.
  • To display an image on a page, you need to use the src attribute. Src stands for "source". The value of the src attribute is the URL of the image you want to display.
  • <img src="url" alt="some_text">
    • Sunny Jackson
       
      The required alt attribute specifies an alternate text for an image, if the image cannot be displayed.
    • Sunny Jackson
       
      The URL points to the location where the image is stored.
  • ...10 more annotations...
  • The attribute values are specified in pixels
  • The height and width attributes are used to specify the height and width of an image.
  • The browser displays the image where the <img> tag occurs in the document. If you put an image tag between two paragraphs, the browser shows the first paragraph, then the image, and then the second paragraph.
  • It is a good practice to specify both the height and width attributes for an image. If these attributes are set, the space required for the image is reserved when the page is loaded.
  • height="
  • <img src="
  • width="
  • alt="
  • without these attributes, the browser does not know the size of the image. The effect will be that the page layout will change during loading
  • Loading images takes time
Sunny Jackson

HTML Color Names - 0 views

  • 147 color names are defined in the HTML and CSS color specification
  • Chartreuse  #7FFF00
  • CornflowerBlue  #6495ED
  • ...28 more annotations...
  • DarkCyan  #008B8B
  • DarkSlateBlue  #483D8B
  • DeepSkyBlue  #00BFFF
  • DodgerBlue  #1E90FF
  • Green  #008000
  • GreenYellow  #ADFF2F
  • LawnGreen  #7CFC00
  • LightBlue  #ADD8E6
  • LightCoral  #F08080
  • LightGreen  #90EE90
  • LightSeaGreen  #20B2AA
  • LightSkyBlue  #87CEFA
  • LightSteelBlue  #B0C4DE
  • Lime  #00FF00
  • LimeGreen  #32CD32
  • MediumSlateBlue  #7B68EE
  • MediumTurquoise  #48D1CC
  • Orange  #FFA500
  • OrangeRed  #FF4500
  • PaleVioletRed  #D87093
  • RoyalBlue  #4169E1
  • SeaGreen  #2E8B57
  • SkyBlue  #87CEEB
  • SlateBlue  #6A5ACD
  • SteelBlue  #4682B4
  • Teal  #008080
  • Yellow  #FFFF00
  • YellowGreen  #9ACD32
Sunny Jackson

HTML Colors - 0 views

Sunny Jackson

Dictionary.com - 0 views

  •  
    Any strong regional accent.
Sunny Jackson

NCCU Library Catalog: A balanced introduction to computer science - 0 views

  • JavaScript and dynamic web pages
  • Algorithms and programming languages
  • JavaScript and user interaction
  • ...10 more annotations...
  • Functions and randomness
  • Abstraction and libraries
  • Conditional execution
  • enabling students to learn programming fundamentals by developing their own interactive Web pages with HTML and JavaScript
  • Conditional repetition
  • Data representation
  • JavaScript strings
  • von Neumann architecture
  • JavaScript arrays
  • transistors and integrated circuits
Sunny Jackson

HTML li tag - 0 views

  • The <li> tag defines a list item.
  • The <li> tag is used in ordered lists(<ol>), unordered lists (<ul>), and in menu lists (<menu>)
Sunny Jackson

HTML Global hidden Attribute - 0 views

  • <p hidden>This paragraph should be hidden.</p>
  • <element hidden>
Sunny Jackson

HTML details Tag - 0 views

Sunny Jackson

HTML em tag - 0 views

Sunny Jackson

HTML figure Tag - 0 views

  • <figure>
  • </figure>
  • The <figure> tag specifies self-contained content, like illustrations, diagrams, photos, code listings, etc.
  • ...1 more annotation...
  • its position is independent of the main flow, and if removed it should not affect the flow of the document
Sunny Jackson

HTML footer Tag - 0 views

  • <footer>
  • </footer>
  • The <footer> tag defines a footer for a document or section.
  • ...2 more annotations...
  • A footer typically contains the author of the document, copyright information, links to terms of use, contact information, etc.
  • You can have several <footer> elements in one document.
fictionalworlds

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

  • Workbooks are a collection of worksheets.
  • Worksheets allow users to enter, calculate, manipulate, and analyze data such as numbers and text. The terms worksheet and spreadsheet are interchangeable.
  • Tables Tables organize and store data within worksheets.
  • ...4 more annotations...
  • an Excel table can sort the data, search for specific data, and select data that satisfies defined criteria.
  • Web Support Web support allows users to save Excel worksheets or parts of a worksheet in HTML format, so a user can view and manipulate the worksheet using a browser.
  • Excel Web support also provides access to real-time data,
  • using Web queries.
‹ Previous 21 - 40 of 106 Next › Last »
Showing 20 items per page