- Information
- AI Chat
1html2pdf - html
Computer (COMP1)
Siva Sivani Institute of Management
Students also viewed
- Vdoc - Summary Project Management: a Systems Approach to Planning Scheduling and Controlling
- Goodbye Party for Miss Pushpa TS - my notes
- Physical Education-SQP
- Human Resource Management In Banking Sector - State Bank Of India hscprojects
- Ngành BẢO HIỂM SSI - nothing
- Probability material 2021 for reference
Preview text
<html> <head> <meta charset="utf-8"> <title>my first webpage</title> </head>
<body> <p>Hello World!</p> </body>
<html> <head> <meta charset="utf-8"> <title>headings</title> </head>
<body> <h1>Heading 1.</h1> <h2>Heading 2.</h2> <h3>Heading 3.</h3> <h4>Heading 4.</h4> <h5>Heading 5.</h5> <h6>Heading 6.</h6> </body>
<html> <head> <meta charset="utf-8"> <title>paragraphs</title> </head>
<body> <h1>Heading 1.</h1> <p>This is my first paragraph.</p> <p>This is my second paragraph.</p> <p>some text some text <br />some text some text some text some text some text some text some text <br />some text some text some text some text </p> </body>
text some text some text some text some text some text </p> <h1>Paragraph 5</h1> <p>some text some text some text some text some text some text some text some text some text some text some text some text some text some text some text some text some text some text some text some text some text </p> <h1>Paragraph 6</h1> <p>some text some text some text some text some text some text some text some text some text some text some text some text some text some text some text some text some text some text some text some text some text </p> <h1>Paragraph 7</h1> <p>some text some text some text some text some text some text some text some text some text some text some text some text some text some text some text some text some text some text some text some text some text </p> <a href="#P1">Take me to paragraph 1.</a> </body>
<html> <head> <meta charset="utf-8"> <title>images</title> </head>
<body> <img src="images/picture" width="200px" height="150px" alt="feather"> <p>Nice Picture!</p> <img src="freenaturestock.s3.amazonaws/166.jpg" width="200px" height="120px" alt="nature"> </body>
<html> <head> <meta charset="utf-8"> <title>iframes</title> </head>
<body> <iframe src="3.paragraphs" width="200px" height="150px" frameborder="1"></iframe> <br /> <iframe name="myiframe"></iframe> <p><a href="wikipedia" target="myiframe">link</a></p> <iframe width="400px" height="200px" src="youtube/embed/eKFTSSKCzWA" frameborder="0" allowfullscreen></iframe> </body>
<html> <head> <meta charset="utf-8"> <title>unordered lists</title> </head>
<body> <ul> <li>Madrid</li> <li>Paris</li> <li>London <ul> <li>Cloudy</li> <li>Cosmopolitan</li> </ul> </li> </ul> </body>
<li>Paris</li> <li>London</li> </ol> <ol type="i"> <li>Madrid</li> <li>Paris</li> <li>London</li> </ol> </body>
<html> <head> <meta charset="utf-8"> <title>description lists</title> </head>
<body> <dt>HTML</dt><dd>-Stands for HyperText Markup Language</dd> <dt>CSS</dt><dd>-Stands for Cascading Style Sheets</dd> </body>
<html> <head> <meta charset="utf-8"> <title>entities</title> </head>
<body> <p>some &nbs p; &n bsp; text</p> <p>some          &# 0;         text</p> <p> 4 < 5 </p> <p>Facebook © </p> </body>
<html> <head> <meta charset="utf-8"> <title>forms</title> </head>
<body> <form method="post"> <label for="email">Email:</label> <input type="text" name="email" placeholder="Email" size="30px" maxlength="100" id="email"> <label for="password">Password:</label> <input type="password" name="password" placeholder="Password" size="30px" maxlength="30" id="password"> <input type="submit" value="Login"> </form> </body>
<option value="Two-Day shipping">Two-Day shipping</option> <option value="One-Day shipping">One-Day shipping</option> </select> <p>Choose your payment method:</p> <label>Paypal<input type="radio" name="payment" value="paypal"></label> <label>Debit Card<input type="radio" name="payment" value="debit card"></label> <label>Credit Card<input type="radio" name="payment" value="credit card"></label> <br /> <label for="comments">Comments:</label> <textarea rows="4" cols="40" name="comments" id="comments"></textarea> <br /> <label>Sign me up for email updates<input type="checkbox" name="email updates" checked="checked"></label> <br /> <label>Securely save my payment details<input type="checkbox" name="save payment" checked="checked"></label> <br /> <input type="submit" value="Submit"> </form> </body>
<html> <head> <meta charset="utf-8"> <title>text formatting</title> </head>
<body> <p>This <em>word</em> is emphasized.</p> <p>This <strong>word</strong> is emphasized more, it stands out against text surrounding it.</p> <p>This <i>word</i> is italic.</p> <p>This <strike>word</strike> is corossed out or struck through.</p> <p>CO<sub> 2 </sub>..<sup> 2 </sup></p> </body>
1html2pdf - html
Course: Computer (COMP1)
University: Siva Sivani Institute of Management
- Discover more from:
Students also viewed
- Vdoc - Summary Project Management: a Systems Approach to Planning Scheduling and Controlling
- Goodbye Party for Miss Pushpa TS - my notes
- Physical Education-SQP
- Human Resource Management In Banking Sector - State Bank Of India hscprojects
- Ngành BẢO HIỂM SSI - nothing
- Probability material 2021 for reference