Website Development (HTML)
Types of application 1) web application (website) -It run inside the browser. For example www.google.com, www.facebook.com 2) desktop application (standalone application) -It run standalone and outside of browser. For example notepad, powerpoint 3) mobile application -It run inside mobile For example whatsapp, instagram
HTML : It is used to create web application (or say to create website)
HTML is based on tags.
Example 1:-
<html>
<header><title>Aleena's website</title></header>
<body>
<h1>Aleena Bagwan</h1>
<h2>About</h2>
<p>I am Aleena.</p>
<h2>Education</h2>
<p> I am in 7 grade.I study in Podar International School.</p>
<h2>Family</h2>
<p>My father is civil engineerr.</p>
<h2>Address</h2>
<p>I live in Navi Mumbai, Nerul.</p>
</body>
</html>
For example <h1 id="aleenaID"></h1>
For example <a href="https://aleenabagwan.blogspot.com/">Visit Aleena Blog</a>
How to open DEBUGGER took (Chrome DevTools) : Right click -> inspect
Top Browsers :-
- Chrome (by google)
- Mozilla Firefox (mostly used in Linux operating systems)
- Internet Explorer (by Microsoft)
- Safari (by Apple)
- Opera
Example image and video tags
<img src="C:\Users\bagwa\Pictures\beauty.jpeg" height='400px' width='400px'></img>
<iframe width="420" height="315" src="https://www.youtube.com/watch?v=7bIB39r2QBU"</iframe>
Example of table
<table> <tr> <th>Firstname</th> <th>Lastname</th> </tr> <tr> <td>Aleena</td> <td>Bagwan</td> </tr> </table>
Example how to create a components
<html>
<header><title>Aleena's website</title></header>
<body>
<h1><i>Contact Form</i></h1>
<form>
<label>Username:</label>
<input type="text">
<br></br>
<label>Password:</label>
<input type="password">
<br></br>
<input type="radio" name="gender" id="male">
<label for="male">Male</label>
<input type="radio" name="gender" id="female">
<label for="female">Female</label>
<br></br>
<input type="checkbox" name="sports" id="soccer">
<label for="soccer">Soccer</label>
<input type="checkbox" name="sports" id="cricket">
<label for="cricket">Cricket</label>
<input type="checkbox" name="sports" id="running">
<label for="running">Running</label>
<br></br>
<label for="file-select">Upload:</label>
<input type="file" name="upload" id="file-select">
<br></br>
<label for="city">City:</label>
<select name="city" id="city">
<option value="sydney">Sydney</option>
<option value="melbourne">Melbourne</option>
<option value="mumbai">Mumbai</option>
<option value="cromwell">Cromwell</option>
</select>
<br></br>
<label for="address">Address:</label>
<textarea rows="3" cols="30" name="address" id="address"></textarea>
<br></br>
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</form>
</body>
</html>
Comments
Post a Comment