اموزش وبلاگ نویسی

وبلاگ نویسی
اموزش وبلاگ نویسی
بایگانی
آخرین مطالب

۳ مطلب با کلمه‌ی کلیدی «سی اس اس background» ثبت شده است

<html>

<head>

<style>

body {

    background-color: #d0e4fe;

}


h1 {

    color: orange;

    text-align: center;

}


p {

    font-family: "tahoma";

    font-size: اندازه خط به عددpx;

}

</style>

</head>

<body>


<h1>welcome</h1>

<p>This is a paragraph.</p>


</body>

</html>


۰ نظر موافقین ۲ مخالفین ۰ ۱۸ مرداد ۹۴ ، ۱۱:۱۰
mehdi ghlami

<html>

<head>

<style>

p {

    background-color: yellow;

}


p.ex {

    margin-top: 200px;

    margin-bottom: 200px;

    margin-right: 100px;

    margin-left: 50px;

}

</style>

</head>

<body>


<p>This is a paragraph with no specified margins.</p>

<p class="ex">This is a paragraph with specified margins.</p>


</body>

</html>

۰ نظر موافقین ۲ مخالفین ۰ ۱۶ مرداد ۹۴ ، ۱۰:۵۴
mehdi ghlami


<html>

<head>

<style>

body {

   background-color: red;

  :اگر بخواهید عکسی را در صفحه وب قرار دهید به جای کد بالا این کد را بنویسید

  background-imgae:url("نام و پسوند عکس");

}

</style>

</head>

<body>

<h1>css background</h1>

</body>

</html>


۱ نظر موافقین ۱ مخالفین ۰ ۱۳ مرداد ۹۴ ، ۲۳:۱۸
mehdi ghlami