GET SOURCE CODE
878 subscribers
23 photos
16 files
21 links
This I where everyone one get PHP SOURCE CODES FOR FREE IF YOU NEED PROJECT TITLE AND SOURCE CODE FOR YOUR FINAL YEAR PROJECT THIS IS IS THE RIGHT PLACE IF YOU WANT ANY PROJET ASK @phpsourcecode
HAVE A FUN WITH INTERNET PROGRAMMING
Download Telegram
ExampeπŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡β˜οΈβ˜οΈ
<form action="form_submit.php" method="post">
<fieldset>
<legend>Bio:</legend>
First name:<br>
<input type="text" name="first-name"
value="John" placeholder="Please
enter your first name here"><br>
Last name:<br>
<input type="text" name="last-name"
value="Doe" placeholder="Please
enter your last name here"><br><br>
Favorite sport:<br>
<select>
<option value="soccer">Soccer
</option>
<option value="tennis">Tennis
</option>
<option value="golf">Golf
</option>
</select>
<textarea name="description">
</textarea>
<input type="submit" value="Submit">
</fieldset>
</form>
Please join and share our channel
https://telegram.me/codehtmlcss
What you want to learn about HTML just put it here @HTM_beginner_bot
πŸ‘‰HTML ATTRIBUTES

We have seen few HTML tags and their usage like heading tags <h1>, <h2>, paragraph tag
<p> and other tags. We used them so far in their simplest form, but most of the HTML tags
can also have attributes, which are extra bits of information.
An attribute is used to define the characteristics of an HTML element and is placed inside the
element's opening tag. All attributes are made up of two parts: a name and a value:
ο‚· The name is the property you want to set. For example, the paragraph <p> element
in the example carries an attribute whose name is align, which you can use to indicate
the alignment of paragraph on the page.
ο‚·
ο‚· The value is what you want the value of the property to be set and always put within
quotations. The below example shows three possible values of align attribute: left,
center and right.
Attribute names and attribute values are case-insensitive. However, the World Wide Web
Consortium (W3C) recommends lowercase attributes/attribute values in their HTML 4
recommendation.
Example
<!DOCTYPE html>
<html>
<head>
<title>Align Attribute Example</title>
</head>
<body>
<p align="left">This is left aligned</p>
<p align="center">This is center aligned</p>
<p align="right">This is right aligned</p>
</body>
</html>
πŸ‘‰CORE ATTRIBUTES
The four core attributes that can be used on the majority of HTML elements (although not all)
are:
ο‚· Id
ο‚· Title
ο‚· Class
ο‚· Style
πŸ‘‰The Id Attribute
The id attribute of an HTML tag can be used to uniquely identify any element within an HTML
page. There are two primary reasons that you might want to use an id attribute on an
element:
ο‚· If an element carries an id attribute as a unique identifier, it is possible to identify just
that element and its content.
ο‚· If you have two elements of the same name within a Web page (or style sheet), you
can use the id attribute to distinguish between elements that have the same name.
We will discuss style sheet in separate tutorial. For now, let's use the id attribute to distinguish
between two paragraph elements as shown below.

Example
<p id="html">This para explains what is HTML</p>
<p id="css">This para explains what is Cascading Style Sheet</p>
πŸ‘‰The title Attribute
The title attribute gives a suggested title for the element. They syntax for the title attribute
is similar as explained for id attribute:
The behavior of this attribute will depend upon the element that carries it, although it is often
displayed as a tooltip when cursor comes over the element or while the element is loading.

Example
<!DOCTYPE html>
<html>
<head>
<title>The title Attribute Example</title>
</head>
<body>
<h3 title="Hello HTML!">Titled Heading Tag Example</h3>
</body>
</html>
πŸ‘‰The class Attribute
The class attribute is used to associate an element with a style sheet, and specifies the class
of element. You will learn more about the use of the class attribute when you will learn
Cascading Style Sheet (CSS). So for now you can avoid it.
The value of the attribute may also be a space-separated list of class names. For example:
class="className1 className2 className3"
πŸ‘‰The style Attribute
The style attribute allows you to specify Cascading Style Sheet (CSS) rules within the element.

Example
<!DOCTYPE html>
<html>
<head>
<title>The style Attribute</title>
</head>
<body>
<p style="font-family:arial; color:#FF0000;">Some text...</p>
</body>
</html>
At this point of time, we are not learning CSS, so just let's proceed without bothering much
about CSS. Here, you need to understand what are HTML attributes and how they can be
used while formatting content.
<table> … </table>
Marks a table in a webpage.
<caption> … </caption>
Description of the table is placed inside this tag.
<thead> … </thead>
Specifies information pertaining to specific
columns of the table.
<tbody> … </tbody>
The body of a table, where the data is held.
<tfoot> … </tfoot>
Determines the footer of the table.
<tr> … </tr>
Denotes a single row in a table.
<th> … </th>
The value of a heading of a table’s column.
<td> … </td>
A single cell of a table. Contains the actual
value/data.
<colgroup> … </colgroup>
Used for grouping columns together.
<col>
Denotes a column inside a table.
Example
<table>
<colgroup>
<col span="2">
<col>
</colgroup>
<tr>
<th>Name</th>
<th>Major</th>
<th>GPA</th>
</tr>
<tr>
<td>Bob</td>
<td>Law</td>
<td>3.55</td>
</tr>
<tr>
<td>Alice</td>
<td>Medicine</td>
<td>3.61</td>
</tr>
</table>
Simple website creating competition for HTML beginners
Our channel is preparing a website development competition for HTML beginners the competition is coding an HTML code for hotel booking it must be only riten by HTML and CSS becouse it is an exercise.
register at @codeadicted
https://telegram.me/codehtmlcss
GET SOURCE CODE pinned Β«Simple website creating competition for HTML beginners Our channel is preparing a website development competition for HTML beginners the competition is coding an HTML code for hotel booking it must be only riten by HTML and CSS becouse it is an exercise.…»
The following steps are required to design a registration form (Sign Up Form):
Step 1: Firstly, install a virtual server on your computer (eg Xampp, Wamp).
Xampp is a free and open-source cross-platform web server solution stack package developed by Apache Friends, consisting mainly of the Apache HTTP Server, MySQL database, and interpreters for scripts written in the PHP and Perl programming languages. XAMPP stands for Cross-Platform (X), Apache (A), MySQL (M), PHP (P), and Perl (P).
Step 2: Next we will require an editor where the HTML code has to be written. You can use any editor (such as Notepad++, Adobe Dreamweaver, NetBeans, etc). Here we will use Notepad ++.
Download the software here https://notepad-plus-plus.org/downloads/

Step 3 : Open the Notepad++ text editor and write the HTML code for designing the HTML Sign Up page.\
We will use various HTML tags to design the page.
You can include the fields according to your convenience (i.e whichever fields you require for the form).
Here I have included the fields according to my convenience.
01. < html >
02. < head>
03. < title > Registration Form </ title >
04. </ head >
05. < body>
06. < link href = "registration.css" type = "texcss" rel = "stylesheet" />
07. < h2 > Sign Up </ h2 >
08. < form name = "form1" action= "modified.form-data" >
09. < div class = "container" >
10. < div class = "form_group" >
11. < label > First Name: </ label >
12. < input type = "text" name = "fn>
13. </ div >
14. < div class = "form_group" >
15. < label > Middle Name: </
label >
16. < input type = "text" name = "m>
17. </ div >
18. < div class = "form_group" >
19. < label > Last Name: </ label >
20. < input type = "text" name = "ln>
21. </ div >
22. < div class = "form_group" >
23. < label > Password: </ label >
24. < input type = "password" name>
25. </ div >
26. </ div >
27. </ form>
28. </ body >
29. </ html >