TIL(25.1.6)

채채·2025년 1월 6일

Today I Learned

목록 보기
50/75

django 공부 겸 html 공부
유튜브 생활코딩의 html 강의 참고

html의 기본 구조

<html>
    <head>
        <meta charset="utf-8">
    </head>
    <body>
 
    </body>
</html>

간단한 기본 태그

<!-- 주석처리 -->

<!-- 링크 a태그  -->
<a href='https://velog.io/@cheachea/posts'
target ='_blank'>채채블로그</a>
<!-- target='_blank'는 새창에서 열기 기능. 없으면 현재창에서 열림 -->

<!-- 제목 h태그 -->
<h1>첫번째 제목</h1>
<h2>두번째 제목</h2>

<!--문단 p태그 -->
<p>문단 나움</p>

form text

<html>
<body>
    <form action="">
        <p>text : <input type="text" name="id" value="default value"></p>
        <p>password : <input type="password" name="pwd" value="default value"></p>
        <p>textarea : 
            <textarea cols="30" rows="10">default value</textarea>
        </p>
    </form>
</body>

</html>

form button

<html>
    <head>
        <meta charset="utf-8">
    </head>

    <body>
        <form action ='http://localhost/form.php'>
            <input type ='text'>
            <input type="submit" value="전송">
            <input type="button" value="버튼">
            <input type="reset">
        </form>
    </body>
</html>

form method

<html>
    <head>
        <meta charset="utf-8">
    </head>

    <body>
        <form action="http://localhost/method.php" method="post">
            <input type="text" name="id">
            <input type="password" name="pwd">
            <input type="submit">

        </form>
        
    </body>
  
</html>
profile
화이팅

0개의 댓글