|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + <head> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 6 | + <title>Learning HTML</title> |
| 7 | + <style> |
| 8 | + .headings { |
| 9 | + background: darkgray; |
| 10 | + padding: 10px; |
| 11 | + color: yellow; |
| 12 | + } |
| 13 | + </style> |
| 14 | + </head> |
| 15 | + <body> |
| 16 | + |
| 17 | + <h3 class="headings" id="headings"> |
| 18 | + Basic tags |
| 19 | + </h3> |
| 20 | + <h1>Heading 1</h1> |
| 21 | + <h2>Heading 2</h2> |
| 22 | + <h3>Heading 3</h3> |
| 23 | + <h4>Heading 4</h4> |
| 24 | + <h5>Heading 5</h5> |
| 25 | + <h6>Heading 6</h6> |
| 26 | + |
| 27 | + <h3 class="headings"> |
| 28 | + Tables |
| 29 | + </h3> |
| 30 | + |
| 31 | + <!--Contact table--> |
| 32 | + <table border="1"> |
| 33 | + <thead> |
| 34 | + <tr> |
| 35 | + <th colspan="4">Employee Contact Information</th> |
| 36 | + </tr> |
| 37 | + <tr> |
| 38 | + <th>Name</th> |
| 39 | + <th>Email</th> |
| 40 | + <th>Mobile</th> |
| 41 | + <th>Edit/Delete</th> |
| 42 | + </tr> |
| 43 | + </thead> |
| 44 | + <tbody> |
| 45 | + <tr> |
| 46 | + <td>Krish</td> |
| 47 | + <td>krish.t@gmail.com</td> |
| 48 | + <td>8765434567</td> |
| 49 | + <td><button>Delete</button></td> |
| 50 | + </tr> |
| 51 | + <tr> |
| 52 | + <td>Manooj</td> |
| 53 | + <td>Manoj.pvn@gmail.com</td> |
| 54 | + <td>7765434567</td> |
| 55 | + <td><button>Delete</button></td> |
| 56 | + </tr> |
| 57 | + <tr> |
| 58 | + <td>Sai</td> |
| 59 | + <td>sai.s@gmail.com</td> |
| 60 | + <td>8765434568</td> |
| 61 | + <td><button>Delete</button></td> |
| 62 | + </tr> |
| 63 | + </tbody> |
| 64 | + </table> |
| 65 | + <!-- End of Contact table--> |
| 66 | + <h3 class="headings">Text Format Tags</h3> |
| 67 | + <p> |
| 68 | + Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam, illo, eos sed unde maxime quibusdam tempore mollitia nulla id voluptatibus nam exercitationem doloremque accusamus praesentium totam rerum incidunt pariatur ut. |
| 69 | + </p> |
| 70 | + <p> |
| 71 | + Lorem ipsum dolor sit amet consectetur adipisicing elit. Alias incidunt dignissimos nesciunt minus. Cumque, vitae saepe. Aliquid in quae consequatur, cumque delectus sapiente alias distinctio quam, doloremque tempore architecto quo! |
| 72 | + </p> |
| 73 | + |
| 74 | + <p> |
| 75 | + <strong>One</strong><br/> |
| 76 | + <i>Two</i><br/> |
| 77 | + <strong><i>Three</i></strong> |
| 78 | + <h1> |
| 79 | + H<sub>2</sub>0 |
| 80 | + </h1> |
| 81 | + </p> |
| 82 | + <h3 class="headings">List Itesm</h3> |
| 83 | + <ul type="square"> |
| 84 | + <li> |
| 85 | + Core Java |
| 86 | + <ul> |
| 87 | + <li>Basics</li> |
| 88 | + <li>Collections</li> |
| 89 | + <li>Exceptions</li> |
| 90 | + <li>JDBC</li> |
| 91 | + </ul> |
| 92 | + </li> |
| 93 | + <li> |
| 94 | + UI |
| 95 | + <ul> |
| 96 | + <li>HTML</li> |
| 97 | + <li>CSS</li> |
| 98 | + <li>JS</li> |
| 99 | + <li>Angular</li> |
| 100 | + </ul> |
| 101 | + </li> |
| 102 | + |
| 103 | + </ul> |
| 104 | + |
| 105 | + <h3 class="headings">Images</h3> |
| 106 | + <img src="images/on.PNG"> |
| 107 | + |
| 108 | + <h3 class="headings">Hyper links</h3> |
| 109 | + <a href="https://facebook.com" target="_blank">Facebook</a> <a href="https://google.com">Google</a> |
| 110 | + <p> |
| 111 | + To learn about headings <a href="#headings">Headings</a> |
| 112 | + </p> |
| 113 | + <p> |
| 114 | + <a href="profile.html">Author</a> |
| 115 | + </p> |
| 116 | +</body> |
| 117 | +</html> |
0 commit comments