Advertisement
Guest User

codeacademy.html

a guest
May 20th, 2013
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.85 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3.     <head>
  4.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5.         <link rel="stylesheet" type="text/css" href="style.css">
  6.         <title>Python</title>
  7.     </head>
  8.     <body>
  9.         <div class="texto">
  10.             <h2>Welcome to the Flying Circus</h2>
  11.             <p>Python is a powerful, flexible programming language you can use in web/Internet development, to write
  12.             desktop graphical user interfaces (GUIs), create games, and much more. Python is:</p>
  13.             <ul>
  14.             <li><strong>High-level</strong>, meaning reading and writing Python is really easy—it looks a lot like regular English!</li>
  15.             <li><strong>Interpreted</strong>, meaning you don't need a compiler to write and run Python! You can write it here at Codecademy
  16.             or even on your own computer (many are shipped with the Python interpreter built in—we'll get to the interpreter later in this lesson).</li>
  17.             <li><strong>Object-oriented</strong>, meaning it allows users to manipulate data structures called <strong>objects</strong> in order to build and execute programs.
  18.             We'll learn more about objects later.</li>
  19.             <li><strong>Fun to use</strong>. Python is named after Monty Python's Flying Circus, and example code and tutorials
  20.             often refer to the show and include jokes in order to make learning the language more interesting.</li>
  21.             </ul>
  22.             <p>This course assumes no previous knowledge of Python in particular or programming/computer science in general.</p>
  23.            
  24.             <div id="instrucoes">
  25.             <h4>INSTRUCTIONS</h4>
  26.             <p>Ready to learn Python? Click Save & Submit Code to continue!</p>
  27.             </div>
  28.             <div id="hint">
  29.             <h4>Hint</h4>
  30.             <p>If the loading bar fills but doesn't fade away, try refreshing the page.</p>
  31.             </div>
  32.         </div>
  33.         <a id="voltar" href="#">[ voltar ]</a>
  34.         <div class="codigo">
  35.             print "Welcome to Python!"
  36.         </div>
  37.         <p>oi<p>
  38.     </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement