Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.99 KB | None | 0 0
  1. <!--
  2.  
  3. This is the comment section, used to add info outside the code
  4.  
  5. -->
  6.  
  7. <!DOCTYPE html>
  8. <html>
  9.     <head>
  10.         <title>Github Hub</title>
  11.         <!-- [if lt IE 9]>
  12.            <script src="//html5vshiv.googlecode.com/svn/trunk.html5.js"></script>
  13.        <![endif]-->
  14.        
  15.         <!-- the script above means if lt (less than) IE (Internet Explorer) version 9
  16.        We can use the commenting system to put optional pieces of code for different browsers.
  17.        If you use the [if] you also need to close it with [endif] to know the end of the block.
  18.      
  19.        This gets downloaded and consumed by the browser. But we can add scripts necessary to fix certain aspects for different browsers.
  20.      
  21.        The script above handles HTML5 tags for older browsers than 9, that is what the code tells it.
  22.        -->
  23.         <link rel="stylesheet" href="css/site.css" />
  24.  
  25.     </head>
  26.     <body>
  27.         <div class="container">
  28.         <header>
  29.             <nav>
  30.                 <ul>
  31.                     <li><a href="/index.html">Home</a></li>
  32.                     <li><a href="/contact.html">Contact</a></li>
  33.                     <li><a href="/about.html">About</a></li>
  34.                 </ul>
  35.             </nav>
  36.             <div>
  37.             <img src="images/logo.gif" class="bordered-image" />
  38.             </div>
  39.             <div>This is a site to search <a href="www.google.com">Github</a> for interesting projects.</div>
  40.         </header>
  41.         <section id="main">
  42.             <p><strong>Lorem ipsum</strong><em> dolor sit amet First italic,</em><i>consectetur adipiscing elit,</i> sed do eiusmod tempor incididunt ut labore et dolore <b>magna aliqua.</b> Ut enim ad minim veniam, quis nostrud <span>exercitation ullamco</span> laboris nisi ut aliquip ex ea commodo consequat.</p>
  43.             <form action="http://yoursite.com/echo" method="POST" class="bordered-image simple-form" id="gitHubSearchForm">
  44.                 <label for="searchPhrase">Search Phrase:</label>
  45.                 <input type="text" name="searchPhrase" id="searchPhrase" /></br>
  46.                 <input type="checkbox" name="useStars" id="useStars" checked="true" />
  47.                 <label for="useStars" Use stars?</label></br>
  48.                 <label for="langChoice">Language: </label>
  49.                 <select name="langChoice" id="langChoice">
  50.                     <option>All</option>
  51.                     <option>JavaScript</option>
  52.                     <option selected>C#</option>
  53.                     <option>Java</option>
  54.                     <option>Ruby</option>
  55.                 </seelct>
  56.                 </be>
  57.                 <input type="submit" value="search" /></br>
  58.             </form>
  59.             <div id="results" class="border-image">
  60.                 <button id="toggleButton">Hide</button>
  61.                 <div id="resultList">This is where the results will go</div>
  62.             </div>
  63.         </section>
  64.         <footer>
  65.             &copy; 2019 Deliberate Practice
  66.         </footer>
  67.         </div>
  68.     <script type="text/javascript" src="js/jquery-3.4.1.min.js"></script>
  69.     <script type="text/javascript" src="js/index.js"></script>
  70.     </body>
  71.    
  72. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement