27, ఫిబ్రవరి 2012, సోమవారం

Cascading Style Sheet IMPLEMENTATION and COBOL PROGRAMMING FUNDAMENTALS ABOUT WRITING AND EXECUTING OF A COBOL PROGRAM


Cascading Style Sheet IMPLEMENTATION
ramu.css    // this is a separate file here the css file and html file both in the same directory
b{color:red}
h1{text-transform:uppercase}
#i1{color:green}                      here i1 is id we must refer with id in the html file
.ramu{text-transform:capitalize}  this class defining
html file
<html>
<head>
<link rel="stylesheet"  href="ramu.css"/>
</head>
<body>
<h1>welcome1</h1>
<b>crl </b><br>CHIRALA<b>R A M U</b><br>

<br><b>ramu</b><br>
<i id=i1>jntu-hyderabad</i>

<p class="ramu">ramanjaneyulu dayinaboyina</p>
<br><b>ramu</b><br>
<h2>welcome 2</h2>
<h3>welcome 3</h3>
</body>
</html>


COBOL PROGRAMMING FUNDAMENTALS ABOUT  WRITING AND EXECUTING OF A COBOL PROGRAM
                                                  Mr.Ramu@Dayinaboyina /COBOL programming
First copy the software into any one of the drive and then navigate into Cobol\Cobol>
I:\cobol\COBOL>edit ramu.cob   (creating a new file)
In Cobol every line should terminate with. (Full stop)
In this program generally four divisions exists all these columns exist with 8th column onwards
        IDENTIFICATION DIVISION.(division-1)
        PROGRAM-ID. RAMU.
        ENVIRONMENT DIVISION.(division-2)
        DATA DIVISION.(division-3)
        WORKING-STORAGE SECTION.
        PROCEDURE DIVISION.(division-4)
        A-PARA.
           DISPLAY "THIS IS MY FIRST COBOL PROGRAM".(display statement will start with 12th coloumn)
           STOP RUN.

I:\cobol\COBOL>cobol ramu.cob;(to run the above created file)
First you come to Cobol-> Cobol>Cobol  filename.cob(extension cob);(terminated with semicolon)

కామెంట్‌లు లేవు:

కామెంట్‌ను పోస్ట్ చేయండి