give me an example for html project
Answers
Answer:
HTML. ... "Hypertext" refers to the hyperlinks that an HTML page may contain. "Markup language" refers to the way tags are used to define the page layout and elements within the page. Below is an example of HTML used to define a basic webpage with a title and a single paragraph of text.
I hope it is useful for you.
please make me brainliest.
Thanks
♡♥♡♥LOVE YOU GUYS♡♥♡♥
Answer:
Here it is.................
Explanation:
<!DOCTYPE html>
<html>
<head>
<title>my adventure</title>
<style>
.cities{
background-color: blue;
color:white;
margin : 20 px;
padding:20 px;
}
</style>
</head>
<body bgcolor=" yellow" text="light blue">
<form action="/action_page.php">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<input type="submit" value="Submit as normal">
<input type="submit" formtarget="_blank" value="Submit to a new window/tab">
</form>
<form action="/action_page.php" method="get">
<input list="browsers" name="browser">
<datalist id="browsers">
<option value="Internet Explorer">
<option value="Firefox">
<option value="Chrome">
<option value="Opera">
<option value="Safari">
</datalist>
<input type="submit">
</form>
<div class="cities">
<h1>LONDON</h1>
</div>
<div class="cities">
<h2>PARIS</h2>
</div>
<div class="cities">
<h3>AMERICA</h3>
</div>
<style>
table, th, td{
border:6px solid blue;
border-collapse:collapse;
padding: 10px;
text-align:left;
}
table#t01{
width: 100%;
background-color: orange;
}
</style>
<table id="t01">
<caption><b>me and my friend</b></caption>
<tr>
<th>firstname</th>
<th>lastname</th>
<th>age</th>
</tr>
<tr>
<td>.............</td>
<td>...........</td>
<td>.........</td>
</tr>
<tr>
<td>..........</td>
<td>..............</td>
<td>.........</td>
</tr>
</table>
<button>click here</button>
</body>
</html>