Java Topics

Lesson 5

In this lesson  we including images, hr tags and some styles

Lesson5.html:


 <!DOCTYPE html>

<html>

<head>

      <title>Web Designing Course Lesson5</title>

  <link rel="stylesheet"type="text/css"href="styles.css"media="screen">

</head>

<body>

       <header>

          <hgroup>

           <h1>Web Designing Course Lesson5</h1>

   <h2>Learn HTML 5 and CSS 3</h2>

  </hgroup>

<nav>

      <ul>

      <li><a href="#">Home</a></li>

  <li><a href="#">Contact</a></li>

  <li><a href="#">About us</a></li>

  </ul>

  

</nav>

   </header>

       <section>

            <article>

         <h1>This is my devotion first article -Lesson5</h1>

 

<img src="VB-5.jpg"alt="The God Story"width="200px"height="220px">

<p>Sri Madvirat Pothuluri Veerabrahmendra Swami is one of the well-known sages in Indian history. He possesses the knowledge of past, present and future. He is often called as the “Nostradamus of India”. 

His forecastings have all proven correct. He forecasts events 

to happen up to the end of Kaliyuga starting from his reign, where most of the predictions have come true and continue to happen.

                         </p>

<p>Sri Veerabrahmendra Swami was born of a pious couple, Paripoornayya Acharya and Prakruthamba, at the hermitage of Atri Muni on the bank of River Saraswathi in UP. There is no historical evidence about Veerabrahmam’s exact date of birth but it is believed he was born before the fall of the Chola dynasty (around the 9th Century AD) as he mentioned in his prophecies that the “Downfall of Chola dynasty will happen”. He also mentioned that, “swetha mukham people will rule the land”. The British East India emerged in India in the 1600’s and so it is also evident that his prediction should have been much before. People wouldn’t have accepted the predictions if he had mentioned the past or ongoing incidents at that time of his existence.

Later Sri Veerabrahmendra was adopted by the Papaghni 

Peetham of the Mysore state. There, at the age of 11, 

he composed the Kalikamba Sapthashathi, a manuscript written 

in praise of goddess Kalikamba. He stayed there till his twelfth 

year and then proceeded on a tour of various places in the country.

                          </p>

</article>

<hr>

<article>

<h1>The God storie of hanuman</h1>

  <img src="hanu-01.jpg"alt="The God Story"width="200px"height="300px">

                          <p>On his tour, he visited many sacred places and shrines and performed

 serve penance at Hariharapuram (Harihara).<br>

 Then he went to Banaganapalle

 in Kurnool District, Andhra Pradesh. Here he started writing the book 

 “Kalagyanam”, of over 14,000 prophecies and spiritual teachings as a cowherd 

 in the house of Garimireddi Atchamma.<br> He lived here for about 20 years. After he left Banaganapalle and reached Kandimallayapalle in Kadapa district and married a pious woman Govindamma.

                          </p>

  <p>Sri Veerabrahmendra Swami was born of a pious couple, Paripoornayya Acharya and Prakruthamba, at the hermitage of Atri Muni on the bank of River Saraswathi in UP. There is no historical evidence about Veerabrahmam’s exact date of birth but it is believed he was born before the fall of the Chola dynasty (around the 9th Century AD) as he mentioned in his prophecies that the “Downfall of Chola dynasty will happen”. He also mentioned that, “swetha mukham people will rule the land”. The British East India emerged in India in the 1600’s and so it is also evident that his prediction should have been much before. People wouldn’t have accepted the predictions if he had mentioned the past or ongoing incidents at that time of his existence.

Later Sri Veerabrahmendra was adopted by the Papaghni Peetham of the Mysore state. There, at the age of 11, he composed the Kalikamba Sapthashathi, a manuscript written in praise of goddess Kalikamba. He stayed there till his twelfth year and then proceeded on a tour of various places in the country.


On his tour, he visited many sacred places and shrines and performed

 serve penance at Hariharapuram (Harihara). Then he went to Banaganapalle

 in Kurnool District, Andhra Pradesh. Here he started writing the book 

 “Kalagyanam”, of over 14,000 prophecies and spiritual teachings as a cowherd 

 in the house of Garimireddi Atchamma. He lived here for about 20 years. After he left Banaganapalle and reached Kandimallayapalle in Kadapa district and married a pious woman Govindamma.

</p>

</article>

   </section>

       <footer>Copyright © www.tvstreetechnologies.blogspot.com</footer>    

</body>

</html>


styles.css:


body{

     font-family:arial,sans-serif;

background-color:#C3DDDD;

 

}


header{

    width:80%;

background-color:#FC63A4;

color:white;

margin-left:auto;

margin-right:auto;

padding:10px;

overflow:hidden;

}


article h1{

line-height:5px;

font-size:1.5em;

color:red;

}


hgroup h1{

font-size:2em;

line-height:5px;

}


hgroup h2{

font-size:1.2em;

}


hgroup{

width:70%;

float:left;

}


nav{

width:30%;

float:right;

}


nav ul{

list-style-type:none;

}


nav li{

float:left;

margin-right:10px;

}

section{

    width:80%;

background-color:white;

margin-left:auto;

margin-right:auto;

border-width:5px;

border-style:double;

border-color:#FC63A4;

padding:5px;

}


article img{

       float:right;

   margin:10px;

   border-style:solid;

   border-width:2px;

   border-color:black;

}


/*hr{

border-width:0;

}*/

footer{

    width:80%;

background-color:#FC63A4;

color:white;

margin-left:auto;

margin-right:auto;

padding:10px;

}


Output:



No comments:

Post a Comment