Wednesday 21 December 2016

HTML Div tag

<html>
<head>
<title>DIV TAGS</title>
</head>
<body>
<div id="myDiv" name="myDiv" title="Example Div Element" style="font-family: Helvetica; font-size: 20pt; border: 2px solid black;">
  <div id="subDiv1" name="subDiv1" title="Subdivision Div Element" style="color: #FF0000; border: 3px dotted black;">
    <h5>Section 1</h5>
    <p>This is Paragraph 1...............</p>
    <p>This is Paragraph 2...............</p>
  </div>
  <br />
  <div id="subDiv2" name="subDiv2" title="Subdivision Div Element" style="color: GREEN;border: 2px dashed black;">
    <h5>Section 2</h5>
    <p>This is paragraph 3...............</p>
    <p>This is paragraph 4...............</p>
  </div>
</div>
</body>
</html>


No comments:

Post a Comment

Oracle Reserved Words

Oracle  Reserved Words The following words are reserved by Oracle. That is, they have a special meaning to Oracle and so cannot be redefi...