Advertisement
coasterka

#3ParagraphsAndImagesOfText

Jun 3rd, 2014
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.28 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>Paragraphs and Images of Text</title>
  5.     </head>
  6.     <body>
  7.         <h3>HTML</h3>
  8.         <p><b><i>HTML</i></b> or HyperText Markup Language is the standard markup language used to create <u>web pages</u>.</p>
  9.         <p><b><i>HTML</i></b> is written in the form of HTML elements consisting of tags enclosed in angle brackets. HTML tags most commonly come in pairs, although some tags represent empty elements and so are unpaired, for example. The first tag in a pair is the start tag, and the second tag is the end tag (they are also called opening tags and closing tags).</p>
  10.         <p><img src="images/html_logo.png" alt="HTML_Logo"/></p>
  11.         <h3>Java</h3>
  12.         <p><strong><em>Java</em></strong> is a computer programming language that is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies as possible.</p>
  13.         <p><strong><em>Java</em></strong> applications are typically compiled to bytecode (class file) that can run on any Java virtual machine (JVM) regardless of computer architecture. Java is, as of 2014, one of the most popular programming languages in use, particularly for client-server web applications, with a reported 9 million developers.</p>
  14.         <p><img src="images/java_logo.png" alt="Java_Logo"/></p>
  15.     </body>
  16. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement