Tuesday, September 03, 2013

Lesson 2 in ASP.NET (using HTML)



To Create the following layout write the code below

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Online Exam System Help</title>
    <style type="text/css">
    h1{color:Orange;
       }
     
        .style1
        {
            font-size: xx-large;
            font-weight: bold;
        }
     
       </style>
</head>
<body>
<div class="header"><img src="images/ID.jpg" atr="Online System"
        style="height: 217px; width: 700px" /><br /><font face="Courier New" color="#0066ff" size="100pt">Testing System</font></div>
<div class="sidebar">
<h1>Exams</h1>
    <ol>
    <li>C++</li>
    <li>Java</li>
    <li>PHP</li>
    <li>MySQL</li>
    <li>Oracle</li>
    <li>ASP.NET</li>  
    </ol>
</div>
<div class="content">
<h1>Exam Details</h1>
<table border="1" cellpadding="0" cellspacing="0">
<tr>
<td valign=top>C++</td>
<td>Details of the Programming with C++ Test are as follows. Principles of Object-Oriented Programming:
Tokens. Expressions and sequences. Functions with C++. Classes and objects, Constructors and destructors, Operator overloading and type conversions.


Inheritance:
Extending classes, Pointers, Virtual functions and polymorphism, Managing console I/O operations, Working with files.


C++ I/O Systems:
C++ I/O basics, Formatted I/O, Manipulators, User defined inserters, Extractors and Manipulators.

</td>

</tr>
<tr>
<td valign=top>Java</td>
<td>Java Exam Details are as follows.  Introduction to OOPs AND JAVA, Understanding the Fundamentals, Working with Access Specifiers and Functions, Constructors, Destructors and Inheritance,
Exception Handling, Graphical User Interface Programming (GUI), Event Handling, Working with Threads, File Handling, Collections, Generics and Annotations, Networking with Java, Remote Method Invocation (RMI), Java Database Connectivity (JDBC) and JavaBeans
</td>

</tr>
<tr>
<td valign=top>PHP</td>
<td>PHP Exam Details</td>

</tr>
<tr>
<td valign=top>MySQL</td>
<td>MySQL Exam Details</td>

</tr>
<tr>
<td valign=top>Oracle</td>
<td>Oracle Exam Details</td>

</tr>
<tr>
<td valign=top>ASP.NET</td>
<td>ASP.NET Exam Details</td>

</tr>

</table>

</div>
</body>
</html>

No comments: