Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.00 KB | None | 0 0
  1. <!doctype html>
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9. <html>
  10.  
  11.  
  12.  
  13. <head>
  14.  
  15.  
  16.  
  17. <style type="text/css">
  18.  
  19.  
  20.  
  21. body{background-color:lightblue;text-align:center;}
  22.  
  23.  
  24.  
  25. p {color:white;font-family:arial;background-color:darkblue;}
  26.  
  27.  
  28.  
  29. tr {background-color:yellow;}
  30.  
  31.  
  32.  
  33. td {border: 1px dashed red;}
  34.  
  35.  
  36.  
  37. #emblem{position:absolute;top:0%;left:0%;hieght:15%;width:15%;}
  38.  
  39.  
  40.  
  41. #emblemtwo{position:absolute;top:0%;left:85%;hieght:15%;width:15%;}
  42.  
  43.  
  44.  
  45. #tableposition{position:absolute;left:35%;text-align:left;}
  46.  
  47.  
  48.  
  49. th {text-align:center;}
  50.  
  51.  
  52.  
  53. </style>
  54.  
  55.  
  56.  
  57. </head>
  58.  
  59.  
  60.  
  61. <body>
  62.  
  63.  
  64.  
  65. Username: <input type="text" name="username" maxlength="10"/><br />
  66.  
  67.  
  68.  
  69. Password: <input type="password" name="passwd" maxlength="10"/><br />
  70.  
  71.  
  72.  
  73. <input type="submit" value="Submit"/>
  74.  
  75.  
  76.  
  77. Male: <input type="radio" name="gender" value="male"/>
  78.  
  79.  
  80.  
  81. Female:<input type="radio" name="gender" value="female"/><br />
  82.  
  83.  
  84.  
  85. <select name="Countries"><option value="country">United States</option>
  86.  
  87.  
  88.  
  89. <option value="china">China</option>
  90.  
  91.  
  92.  
  93. <option value="Iraq">Iraq</option>
  94.  
  95.  
  96.  
  97. <option value="Saudi Arabie">Saudi Arabia</option>
  98.  
  99.  
  100.  
  101. <option value="Sweden">Sweden</option></select>
  102.  
  103.  
  104.  
  105. <textarea name="bio" rows="7" cols="40">Tell me about yourself</textarea><br />
  106.  
  107.  
  108.  
  109. <p>Upload an image</p>
  110.  
  111.  
  112.  
  113. <input type="file" name="Imagefile" />
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121. </form>
  122.  
  123.  
  124.  
  125. <img src="Emblem.jpg" id="emblem"></img>
  126.  
  127.  
  128.  
  129. <img src="Emblem.jpg" id="emblemtwo"></img>
  130.  
  131.  
  132.  
  133. <h1><strong>ShelledInSecurity.org</strong></h1>
  134.  
  135.  
  136.  
  137. <hr />
  138.  
  139.  
  140.  
  141. <h3><strong>This website is strictly for computer programming</strong></h3>
  142.  
  143.  
  144.  
  145. <h3>We specialize in the following languages</h3>
  146.  
  147.  
  148.  
  149. <br />
  150.  
  151.  
  152.  
  153. <a href="second.html">This links to second page</a>
  154.  
  155.  
  156.  
  157. <h4>PHP</h4>
  158.  
  159.  
  160.  
  161. <p>Used mainly to create forums on a website</p>
  162.  
  163.  
  164.  
  165. <h4>SQL</h4>
  166.  
  167.  
  168.  
  169. <p>This is used to create and manage Databases within webpages</p>
  170.  
  171.  
  172.  
  173. <h4>XHTML</h4>
  174.  
  175.  
  176.  
  177. <p>This is the used for creating the main webpage design</p>
  178.  
  179.  
  180.  
  181. <h4>CSS</h4>
  182.  
  183.  
  184.  
  185. <p>This is used for providing graphics and interactive user interfaces</p>
  186.  
  187.  
  188.  
  189. <h4>Javascript</h4>
  190.  
  191.  
  192.  
  193. <p>This is used to provide interactive programs for the user</p>
  194.  
  195.  
  196.  
  197. <div id="tableposition"><table border="5">
  198.  
  199.  
  200.  
  201. <tr>
  202.  
  203.  
  204.  
  205. <th>abbrv.</th>
  206.  
  207.  
  208.  
  209. <th>Description</th>
  210.  
  211.  
  212.  
  213. </tr>
  214.  
  215.  
  216.  
  217. <tr>
  218.  
  219.  
  220.  
  221. <td>PHP</td>
  222.  
  223.  
  224.  
  225. <td>Used mainly to create forums on a website</td>
  226.  
  227.  
  228.  
  229. </tr>
  230.  
  231.  
  232.  
  233. <tr>
  234.  
  235.  
  236.  
  237. <td>SQL</td>
  238.  
  239.  
  240.  
  241. <td>This is used to create and manage Databases within webpages</td>
  242.  
  243.  
  244.  
  245. </tr>
  246.  
  247.  
  248.  
  249. <tr>
  250.  
  251.  
  252.  
  253. <td>XHTML</td>
  254.  
  255.  
  256.  
  257. <td>This is the used for creating the main webpage design</td>
  258.  
  259.  
  260.  
  261. </tr>
  262.  
  263.  
  264.  
  265. <tr>
  266.  
  267.  
  268.  
  269. <td>CSS</td>
  270.  
  271.  
  272.  
  273. <td>This is used for providing graphics and interactive user interfaces</td>
  274.  
  275.  
  276.  
  277. </tr>
  278.  
  279.  
  280.  
  281. <tr>
  282.  
  283.  
  284.  
  285. <td>Javascript</td>
  286.  
  287.  
  288.  
  289. <td>This is used to provide interactive programs for the user</td>
  290.  
  291.  
  292.  
  293. </tr>
  294.  
  295.  
  296.  
  297. </table></div>
  298.  
  299.  
  300.  
  301. <hr />
  302.  
  303.  
  304.  
  305. </body>
  306.  
  307.  
  308.  
  309. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement