≪!DOCTYPE html≫
            ≪html lang="en"≫
            ≪head≫
                ≪meta charset="UTF-8"≫
                ≪meta name="viewport" content="width=≪device-width≫, initial-scale=1.0"≫
                ≪title≫Farazman≪/title≫
                ≪style≫
                    body{
                        background-color: black;
                        direction: rtl;
                        text-align: right;
                        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
                    }
                    h1{
                        color: red;
                        font-weight: bolder;
                    }
                    p{
                        color: yellowgreen;
                        font-style: oblique;
                    }
                ≪/style≫
                ≪script≫
                    function sayHello(){
                        alert("به فرازمان خوش آمدید")
                    }
                ≪/script≫
            ≪/head≫
            ≪body≫
                ≪h1≫پیام خوشآمد به کلاس≪/h1≫
                ≪p≫به جلسه اول کلاس طراحی سایت خوش آمدید≪/p≫
                ≪button onclick="sayHello()"≫کلیک کن≪/button≫
            ≪/body≫
            ≪/html≫