-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (24 loc) · 897 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
</style>
<title>Search text project</title>
</head>
<body>
<div class="main">
<div class="input-container">
<input type="text" placeholder="search here..." id="input">
<button id="btn" type="submit">Search</button>
</div>
<div class="text-container">
<p id="ptag">
Web browsers can read HTML files and compose them into visible or audible web pages. Browsers do not display the HTML tags and scripts, but use them to interpret the content of the page. HTML describes the structure of a website semantically along with cues for presentation, making it a markup language, rather than a programming language .
</p>
</div>
</div>
<script src="app.js"></script>
</body>
</html>