| <!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">
    <link rel="stylesheet" href="style.css">
    <title>Document</title>
</head>
<body>
    
    <form action="#" method="post" id="post">
        <div class="post-container">
            <textarea name="post" id="postvalue" cols="30" rows="10" ></textarea>
            <div class="has-link-preview">
                <div>
                    <img src="internet.png" alt="">
                </div>
                <div>
                    <h3 style="margin:0;">link title</h3>
                    <p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Ad dolores labore ipsam.</p>
                    <small id="link"><a href="">link to some whre</a></small>
                </div>
            </div>
        </div>
    </form>
    <script src="index.js"></script>
</body>
</html>
 |