html 코드짠거 한번 봐주세요, (검색창 생성)

안녕하세요 html에 관한 질문드립니다.

CSS를 수정하지 않은채, 게시글 안에 검색창을 삽입코자 합니다.

검색할 내용은, 해당 블로그 안에 있는 게시글 검색입니다.


테스트용으로 블로그를 하나 만들어두었는데요

https://dsgfshlkdhglk34.blogspot.com/

아래 코드를 html모드로 작성하면 검색창은 만들어지는데, 검색할 주체가 없기 때문에 ...

아무런 결과값이 안뜨는군요

아래 코드에서 무얼 추가해야하는지 여쭙습니다.


<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta http-equiv="X-UA-Compatible" content="IE=edge">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>검색창</title>

<style>

.searching{width: 500px; height: 50px;

border:2px solid rgb(25,206,96); position:relative;}

.button{width: 50px; height: 50px; background: rgb(25,206,90);

position: absolute; right: 0; top: 0; border: none;

font-size: 15px; font-weight: bold; color: white;}

input[name="query"]{height: 35px; width: 420px; position: absolute;

top: 5px; left: 10px; border: none; font-size: 25px;}

input[name="query"]:focus{outline: none;}

</style>

</head>

<body>

<form class="searching">

<input type="text" name="query" placeholder="검색창 테스트">

<button class="button">검색</button>

</form>

</body>

</html>


    아직 답변이 없어요.