<p>

<!DOCTYPE html>
<html>
<head>
    <title>Simple Title and Paragraph</title>
</head>
<body>
    <h1>Welcome to Travel World</h1>
    <p>Traveling opens up a new perspective and creates unforgettable memories. Let's explore the world together!</p>
</body>
</html>

<li>

<!DOCTYPE html>
<html>
<head>
    <title>Simple List</title>
</head>
<body>
    <h1>Top Destinations</h1>
    <ul>
        <li>Petra</li>
        <li>Dubai</li>
        <li>Wadi Rum</li>
    </ul>
    <h2>Activities to Try</h2>
    <ol>
        <li>Desert Safari</li>
        <li>Explore Ancient Ruins</li>
        <li>Visit Luxury Malls</li>
    </ol>
</body>
</html>

<href>

<!DOCTYPE html>
<html>
<head>
    <title>Simple Links</title>
</head>
<body>
    <h1>Useful Links</h1>
    <p>Check out these travel guides:</p>
    <a href="https://example.com/petra" target="_blank">Petra Guide</a><br>
    <a href="https://example.com/dubai" target="_blank">Dubai Guide</a><br>
    <a href="https://example.com/wadirum" target="_blank">Wadi Rum Guide</a>
</body>
</html>

<img>

<!DOCTYPE html>
<html>
<head>
    <title>Simple Image</title>
</head>
<body>
    <h1>Beautiful Desert</h1>
    <img src="https://via.placeholder.com/300x200" alt="Desert Image">
    <p>This is a serene desert landscape with endless sand dunes.</p>
</body>
</html>

<input>

<!DOCTYPE html>
<html>
<head>
    <title>Simple Input</title>
</head>
<body>
    <h1>Travel Planner</h1>
    <p>Enter your favorite destination:</p>
    <input type="text" placeholder="e.g., Petra, Dubai">
    <p>Select a date for your trip:</p>
    <input type="date">
</body>
</html>

For You

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다