테이블 형식과 input 타입

vancouver·2023년 4월 10일
0

HTML 이해하기

목록 보기
3/5

테이블 형식

<p><h3>Work Experience</h3></p>
    <table cellspacing = "10">
        <thead>

            <tr>
                <th>Dates</th>
                <th>Work</th>
            </tr>
            </thead>
            <tbody>
            <tr>
                <td>2010-2013</td>
                <td>Lead Developer at Tempo App</td>
            </tr>
            <tr>
                <td>2010</td>
                <td>Researcher at The Institude of Congnitive Neurosciences</td>
            </tr>
        </tbody>
    
    </table>
    <hr> 

  <h3>Skills</h3>    
<table cellspacing = "10"> 
  <tr>
      <td>javascript </td>
      <td> ⭐⭐⭐⭐⭐</td>
  </tr>
  <tr>
      <td>Css </td>
      <td>⭐⭐⭐⭐⭐</td>
  </tr>
  <tr>
      <td>react </td>
      <td>⭐⭐</td>
  </tr>
</table>

input type

  <form class="" action="index.html" method="post">
        <label>Your Name:</label>
        <input type ="text" name="" value="">
        <input type ="color" name="" value="">
        <label>Password</label>
        <input type ="password" name="" value="">
        <input type = "submit" name="">
    </form>    

<form>
    <input type ="text"><br>
    <input type ="submit"><br>
    <input type ="file"><br>
    <input type ="date"><br>
    <input type ="radio"><br>
    <input type ="range"><br>    
</form>






0개의 댓글