header

Engineering Solution

Smart Technical Assistance Center, BD

Select blog language from Bangla to -

WEB DESIGN AND DEVELOPMENT class 7


Web design and development all video tutorial links:
https://bit.ly/2JuRdmw

আজকের সপ্তম ক্লাসে আমরা শিখবোঃ
Topic 12: CSS এর মাধ্যমে paragraph এর লেখা বড় ও মোটা করা এবং div এর লেখা Hide করে রাখা।
Topic 13: Video এবং audio input করা।

Topic 12
CSS এর মাধ্যমে paragraph এর লেখা বড় ও মোটা করা।

  HTML এর file.


<div class="link1">
   <p class="paragraph">Wellcome to the                world of css.<br>
 My name is Fahad.
 My name is Fahad.
 My name is Fahad.
 My name is Fahad.
 My name is Fahad.
    </p>
</div>



  CSS এর file.


 .paragraph{
       font-size: 30px;
       font-weight: 1000;
   }

div এর লেখা Hide করে রাখা।

  HTML এর file.
<div class="link1">
    <!--<p class="paragraph">
          Wellcome to the world of css. My name is Fahad. My name is Fahad. My name is Fahad. My name is Fahad. My name is Fahad.
    </p>-->
</div>

Topic 13
Video input করা।

  HTML এর file.


<embed src="video_name_link.mp4" class="video"></embed>


  CSS এর file.
  .video{
                         height: 100%;
                         width: 100%;
   }

or, <video controls><source src="video_name_link.mp4"></video>

                                                                       Audio input করা।
সুধুমাত্র video টেগ এর পরিবর্তে audio টেগ নিতে হবে, বাকি নিয়ম একই।

YouTube Link: https://bit.ly/2Yr4nGy

No comments

Powered by Blogger.