HTML कोडिंग में Google की तरह website बनायें // Google website create from code html
ये कोड से आप वेबसाइट create करसकते है
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google Search</title>
</head>
<body>
<h1>Google Search</h1>
<form action="https://www.google.com/search" method="get">
<label for="query">Search Google:</label>
<input type="text" id="query" name="q" required>
<button type="submit">Search</button>
</form>
</body>
</html>
Comments
Post a Comment