Posts

Some basic points about python.

Image
           Some basic points about Python. Python:-                          It is a programming language developed by Guido Van Rossum In February 1991.                          Python is an easy and easy-to-learn yet powerful object-oriented programming language. It is a very high-level programming language, yet as powerful, as many other middle-level, not-so-high-level languages like C, C++, Java, etc. It is case-sensitive. Plus points of python:- Easy to use. Free and open source. Cross-platform language. Variety of usage applications. Interpreted language. Minus points of python:- Not the fastest language. Les libraries are present in Java, C, and Pearl. Needs to be more easily convertible. Python has two types of working windows. The first one is an interactive mode, and the second is a script mode. Both modes have the...

HTML Forms

Image
                         HTML Forms  <html> <head><title>forms</title></head> <body> <center> <form action=mailto:..@gmail.com"method="post"> First name:<input type="text"name="first_name"/> Last name:<input type="text"name="last_name"/> <h2>Select Your Categories <h2> <h4>Age Category <h4> <input type="radio"name="age"value="12-15"/>12-15 <input type="radio"name="age"value="16-18"/>16-18 <input type="radio"name="age"value="19-25"/>19-25 <h4>Occupation Category <h4> <input type="checkbox"name="s1"value="Student"/>Student <input type="checkbox"name="s1"value="Teacher"/>Teacher  <input type="checkbox"name="s1"value="Manager"/>M...

Blog using HTML page

Image
                        A blog using an HTML page  <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> * {   box-sizing: border-box; } /* Add a gray background color with some padding */ body {   font-family: Arial;   padding: 20px;   background: #f1f1f1; } /* Header/Blog Title */ .header {   padding: 30px;   font-size: 40px;   text-align: center;   background: white; } /* Create two unequal columns that floats next to each other */ /* Left column */ .leftcolumn {      float: left;   width: 75%; } /* Right column */ .rightcolumn {   float: left;   width: 25%;   padding-left: 20px; } /* Fake image */ .fakeimg {   background-color: #aaa;   width: 100%;   padding: 20px; } /* Add a card effect for articles */ .card {    background-color: white; ...

Code for a dynamic website

Image
                     Code for a dynamic website  <!DOCTYPE html> <html> <head> <style> * {   box-sizing: border-box; } body {   font-family: Arial;   padding: 10px;   background: #f1f1f1; } /* Header/Blog Title */ .header {   padding: 30px;   text-align: center;   background: white; } .header h1 {   font-size: 50px; } /* Style the top navigation bar */ .topnav {   overflow: hidden;   background-color: #333; } /* Style the topnav links */ .topnav a {   float: left;   display: block;   color: #f2f2f2;   text-align: center;   padding: 14px 16px;   text-decoration: none; } /* Change color on hover */ .topnav a:hover {   background-color: #ddd;   color: black; } /* Create two unequal columns that floats next to each other */ /* Left column */ .leftcolumn {      float: left;   width: 75%; } /* Right co...

Basics things about HTML

                                  BASIC THINGS ABOUT HTML HTML Document Structure:-     An HTML document consists of text, which comprises the content of the document, and tags, which define the structure and appearance of the document. The basic structure of an HTML document is simple with the entire document bound by a pair of <HTML> and </HTML> tags.         <HTML>        <HEAD>        <TITLE> Title of page is written here</TITLE>        </HEAD>         <BODY>                        The HTML tags that define your page go here         </BODY>        </HTML> The <head>.....</head> tags make the header of the documen...

Creating Tables in Microsoft Word

Image
            Creating Tables in Microsoft Office Word Step 1-Click on the Start button from the Taskbar . Step 2-Then the Start menu appears select " Microsoft Word" . Step 3-Then " Microsoft Word " appears. And select the " Blank Document " option. Step 4-Then the window appears. Step 5-Then select the " Insert Tab ". Step 6-Then select the " Table " option from the " Insert Tab ".  Step 7-Then select the " rows and columns ". Then the table is created.

SOME SIMPLE CODE RELATED TO WEB DESIGNING

                 WEB DESIGNING It is through the help of HTML. It is divided into two parts  Header  <html>,<head>,<title>etc. Body <body> etc. Heading level <h1></h1>.......<h6>   CREATING HEADING LEVELS <html> <head><title>any title you can type</title> </head> <body> <h1>type your diserved sentence</h1> <h2> type your diserved sentence</h2> <h3> type your diserved sentence</h3> <h4> type your diserved sentence</h4> <h5> type your diserved sentence</h5> <h6> type your diserved sentence</h6> </body> </html> CREATING HEADING LEVELS IN CENTRE OF PAGE WITH BACKGROUND IMAGE. <html> <head><title>any title you can type</title> </head> <body background image="enter location of image with extension" > <center> <h1>type your dise...