Posts

Showing posts with the label code

HTML CODE PART 4

Image
HOW TO MAKE ORDERED & UNORDERED LIST IN HTML What is a list? A record of short pieces of information, such as people's names, usually written or printed with a single thing on each line and often ordered in a way that makes a particular thing easy to find. There are two types of lists.... Ordered list  Unordered list Ordered list   ordered list is a list consisting of numbers, alphabets , roman numbers and many more ... these are very systematic and looks good to see it also helps to keep the records of the list..   Unordered list  unordered list is a list consisting of bullets, shapes , squares , rectangle and many more these and very much similar as ordered lists...  EXAMPLE CODE <html> <title> web page</title> <head><center><h1>excercise 12</h1></center></head> <body> a]excercise  <ul type="dot"><h3> <li>computer science</li> <li>civil engineering</li> ...

HTML CODE PART 2

Image
USING DIFFERENT TYPES OF FONT STYLES IN HTML   BOLD A set of type characters that are darker and heavier than normal. A bold font implies that each character was originally designed with a heavier appearance rather than created on the fly from a normal character. ITALICS It may be difficult to imagine, but before the use of computers, nearly every document or publication was handwritten or hand set using letterpress (movable type), followed by mechanical typesetting and phototypesetting. In the 21st century, it's easy to italicize individual words and phrases when keyboarding documents. An italic font is a cursive, slanted typeface. A font is a specific size, style, and weight of a typeface used in printing and writing. When we keyboard text, we typically use a roman font, where the text is upright. By comparison, an italic font is slightly slanted to the right, as shown here Organizations, like the American Psychological Association (APA) and the Modern Language Association (MLA) ...

HTML CODE PART 1

Image
ALIGNING THE WORDS. In this example we are going to see the different types of alignments and we will learn how to use them..... WHY ALIGNMENT IS USEFUL IN WEB DESIGN? Alignment is one of those things that comes hand-in-hand when working with grid systems. The subject of alignment isn’t simply a matter of choosing whether or not you want to align text or images to the left or right of a design (though those decisions obviously still matter), instead, we employ alignment to improve our designs. Proper alignment in your designs will make them visually more appealing and will also make it easier for users to scan over a page, sub-consciously also offering a calmer reading experience. All of the elements in your design will have to be aligned in some way, whether this is just plain text on your page, images mixed within the text (or even header or hero images), videos, buttons and call-to-actions, links (within the text or in modules such as a navigation section) or any other elements you ...

CODE FOR THE FOLLOWING LOGIN PAGE

Image
CODE <html> <style> .h1{     color: white;   } .h1{        font-size: 50px;      } .h2{         color: white;         font-size:40px;       } .h3{         color:white;         font-size:30px;       }  #box-1 {     background: linear-gradient(100deg, #CCFFFF, #FFCCCC);     width: 20%;     height: 45%;     filter:blur(-1px);   } .hi{             color: blue; } .h6{        color: blue;        font-size: 15px; } } </style> <body style = "background: url(https://htmlcolorcodes.com/assets/images/html-color-codes-color-tutorials-hero-00e10b1f.jpg); background-size: 100% 100%;"> <div> <h1 class="h1"> <b><center>WELCOME TO OUR XYZ WEBSITE</center></b></h1>...