카테고리 없음

TEST

HaulS 2023. 11. 4.
<!doctype html>
<html lang="UTF-8">
 <head>
  <meta charset="UTF-8">
  <meta name="Generator" content="Visual Studio Code">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <title>Document</title>
 </head>
 <body>

 <p style="color:blue;"><strong>로그인</strong></p>

 <!DOCTYPE html>
<html>
<body>

<form action="action_page.php">
  <fieldset>
    <legend>Personal information:</legend>
    First name:<br>
    <input type="text" name="firstname" value="Mickey">
    <br>
    Last name:<br>
    <input type="text" name="lastname" value="Mouse">
    <br><br>
    <input type="submit" value="Submit">
  </fieldset>
</form>

<form>
 .
Meeting Place
 .
</form>

</body>
</html>


<br>

<hr/>


<!DOCTYPE html>
<html>
<head>
<style>
div.container {
    width: 100%;
    border: 1px solid gray;
}

header, footer {
    padding: 1em;
    color: white;
    background-color: black;
    clear: left;
    text-align: center;
}

nav {
    float: left;
    max-width: 160px;
    margin: 0;
    padding: 1em;
}

nav ul {
    list-style-type: none;
    padding: 0;
}
  
nav ul a {
    text-decoration: none;
}

article {
    margin-left: 170px;
    border-left: 1px solid gray;
    padding: 1em;
    overflow: hidden;
}
</style>
</head>
<body>

<div class="container">

<header>
   <h1>City Gallery</h1>
</header>
 
<nav>
  <ul>
    <li><a href="#">London</a></li>
    <li><a href="#">Paris</a></li>
    <li><a href="#">Tokyo</a></li>
  </ul>
</nav>

<article>
  <h1>London</h1>
  <p>London is the capital city of England. It is the most populous city in the  United Kingdom, with a metropolitan area of over 13 million inhabitants.</p>
  <p>Standing on the River Thames, London has been a major settlement for two millennia, its history going back to its founding by the Romans, who named it Londinium.</p>
  <br>
  <a href="https://www.google.com/?&bih=916&biw=908&hl=ko" target="_blank">Google</a> 

  <img src="https://i.pinimg.com/originals/27/31/0a/27310a14ada36709fbeb2fc5814f3d29.jpg">
</article>
-<footer>Copyright � W3Schools.com</footer>

</div>

</body>
</html>


 </body>
</html>

댓글