রবিবার, ২২ জুলাই, ২০১২

Keyboard short-cart

• CTRL+Windows Logo+F: Find computer
• CTRL+Windows Logo+TAB: Moves focus from Start, to the Quick Launch toolbar, to the system tray (use RIGHT ARROW or LEFT ARROW to move focus to items on the Quick Launch toolbar and the system tray)• Windows Logo+TAB: Cycle through taskbar buttons
• Windows Logo+Break: System Properties dialog box
• Application key: Displays a shortcut menu for the selected itemMicrosoft Natural Keyboard with IntelliType software installed
• Windows Logo+L: Log off Windows
• Windows Logo+P: Starts Print Manager
• Windows Logo+C: Opens Control Panel
• Windows Logo+V: Starts Clipboard
• Windows Logo+K: Opens Keyboard Properties dialog box
• Windows Logo+I: Opens Mouse Properties dialog box
• Windows Logo+A: Starts Accessibility Options (if installed)
• Windows Logo+SPACEBAR: Displays the list of Microsoft IntelliType shortcut keys
• Windows Logo+S: Toggles CAPS LOCK on and offDialog box keyboard commands
• TAB: Move to the next control in the dialog box• SHIFT+TAB: Move to the previous control in the dialog box
• SPACEBAR: If the current control is a button, this clicks the button. If the current control is a check box, this toggles the check box. If the current control is an option, this selects the option.
• ENTER: Equivalent to clicking the selected button (the button with the outline)
• ESC: Equivalent to clicking the Cancel button
• ALT+underlined letter in dialog box item: Move to the corresponding item

শুক্রবার, ২৯ জুন, ২০১২

কিছু অসাধারন ফন্ট স্টাইল


বন্ধুরা কেমন আছেন?আশা করি ভাল আজ আমি আপনাদের এমন একটা জিনিস দিব যা আশা করি সবার ভাল লাগবে,চলুন নিচের ছবি গুলি দেখি
ক্যাপশন যুক্ত করুন
 চাইলে আপনিও  ব্যাবহার করে সুন্দর  ডিজাইনের টেক্সট তৈরী করতে পারেন খুব সহজে এখান থেকে নিয়ে



     ফাইল  গুলিতে dabble click করে  install  করে নিন।সবাই ভাল থাকবেন।

    আল্লাহ হাফেজ...


    রবিবার, ২৭ মে, ২০১২

    html image


    এবার আমরা দেখব কিভাবে html এ image যুক্ত করতে হয় এর জন্য নিচের code টুকু লক্ষ্য করুন।

    <img src="file:///G|/Photo/New folder/New folder (2)/cute.jpg" width="603" height="270">





    এখানে বলা হচ্ছে একটা image যুক্ত হবে আমার G drive হতে New folder এর New folder2 অন্তরগত cute.jpg নামক image file যার widthহবে 603 এবং height হবে 270।
    তবে উল্লেখ্য যে file টি যে ফোল্ডারে থাকবে image টি ও সে ফোল্ডারে থাকতে হবে।
                    
                            আল্লাহ হাফেজ।।

    html form


    আসুন এবার দেখা যাক কিভাবে form তৈরি করতে হয় আগের মত নিচের কোড টুকু copy করে  paste করে save করুন।

    //Input box
    <form>
    First name: <input type="text" name="firstname" /><br />
    Last name: <input type="text" name="lastname" />
    </form>
    //Password box
    <form>
    Password: <input type="password" name="pwd" />
    </form>
    //radio button
    <form>
    <input type="radio" name="sex" value="male" /> Male<br />
    <input type="radio" name="sex" value="female" /> Female
    </form>
    //checkbox
    <form>
    <input type="checkbox" name="vehicle" value="Bike" /> I have a bike<br />
    <input type="checkbox" name="vehicle" value="Car" /> I have a car
    </form>
    //submit button
    <form name="input" action="html_form_action.asp" method="get">
    Username: <input type="text" name="user" />
    <input type="submit" value="Submit" />
    </form>



    এখানে //Input box ,//Password box, //radio button, //checkbox, //submit button আপনাদের বুঝার সুবিধার্থে দেয়া হয়েছে ।
         

    আল্লাহ হাফেজ।।


    শনিবার, ২৬ মে, ২০১২

    HTML ফরম্যাটিং


    বন্ধুরা কেমন আছেন? আজ আমি HTML এর formatting নিয়ে আলচনা করব প্রথমে আপনার computer এ Macromedia Dreamweaver run করে দুই body এর মাঝখানে নিচের Code টুকু copy paste করুন

    <body>
    <p>
    <font size="9" face="arial" color="green">
    This sentence is in Arial, size 9,and text color is green.</font>
    </p>
    <p>
    <font size="5" face="Times New Roman" color="red">
    This sentence is in Times New Roman, size 5, and text color is red.</font>
    </p>
    </body>

    এরপর save as হতে type .html দিয়ে সেভ করুন।কাজ শেষ এবার দেখা যাক কি হল 


    এবার Code নিয়ে আলোচনা করা যাক।

    <p>
    <font size="9" face="arial" color="green">
    This sentence is in Arial, size 9,and text color is green.</font>
    </p>

    এখানে <p> দ্বারা ট্যাগ শুরু এবং শেষ বুঝানো হয়েছে
    <font size="9" face="arial" color="green">
    এখানে বলা হচ্ছে font size হবে 9, font হবে arial, font color হবে green.
    এখন নিচের টুকু  নিজে নিজে চেস্টা করুন।আশা করি সবাই পারবেন।
                             
                            আল্লাহ হাফেজ।।

    শুক্রবার, ২৫ মে, ২০১২

    html03Text


    সবাইকে ধন্যবাদ,আজ দেখবো html এর মাধ্যমে কিভাবে Website এ text document যুক্ত করা যায়।
    এর জন্য নিচে code টুকু Dreamweaver এর দুই body এর মাঝখানে paste পূর্বের save করুন।
    <body>
    Your Text here
    </p>
    <hr />
    <p> Your Text here </p>
    </body>
    এখানে Your Text here এর স্থানে আপনার Text লিখুন।
    মনে করুন আমি এই text টি যুক্ত করব “Read the project description carefully. After all, if the employer doesn’t feel you understand the project, you’re not likely to win the bidding. Besides, many employers will ask for specific details that you need to be aware of. In fact, employers often include a phrase that must be included in your bid in order to have it considered. The bottom line is, you should always take the time to go through the description thoroughly”
    তহলে আমার নিচের মত করে save দিতে হবে
    <body>
    Read the project description carefully. After all, if the employer doesn’t feel you understand the project, you’re not likely to win the bidding. Besides, many employers will ask for specific details that you need to be aware of. In fact, employers often include a phrase that must be included in your bid in order to have it considered. The bottom line is, you should always take the time to go through the description thoroughly</p>
    <hr />
    <p> Read the project description carefully. After all, if the employer doesn’t feel you understand the project, you’re not likely to win the bidding. Besides, many employers will ask for specific details that you need to be aware of. In fact, employers often include a phrase that must be included in your bid in order to have it considered. The bottom line is, you should always take the time to go through the description thoroughly</p>
    </body>

     এভাবে save দিলে output হবে এই রকম  আল্লাহ হাফেজ।

    বৃহস্পতিবার, ২৪ মে, ২০১২

    HTML02 color

    বন্ধুরা কেমন আছেন ?আশা করি ভাল ।অনেক ব্যাস্ততার কারনে কিছুদিন লেখা হয়নি আজ আবার লিখছি ।আজও HTML নিয়ে আলোচনা করব।আগের মত আপনার computer এ Macromedia Dreamweaver রান করে code mode নিয়ে আসুন


    এবার নিচের code টুকু copy করে দুই body এর মাঝখানে paste করুন


    <p style="background-color:#999999">
    Your company
    </p>
    <p style="background-color:rgb(300,300,0)">
    Your company
    </p>
    <p style="background-color:blue">
    Your company
    <p style="background-color:green">
    Your company
    </p>


    আসুন code টুকু বোঝার চেষ্টা করি
    <p style="background-color:#999999">
    Your company
    </p>


    এখানে বলা হচ্ছে backgroundএর color হবে #999999 অথাৎ output এ যে color টা দেখছি আপনার ইচ্ছা মত color code পরিবর্তন করতে পারেন।
    আপনি আরও দুই ভাবে background-color দিতে পারেন

    তার জন্য পরের code টুকু দেখুন

    <p style="background-color:rgb(300,300,0)">
    Your company
    </p>

    এখানে বলা হচ্ছে background-color হবে rgb(300,300,0) এটাও আপনার ইচ্ছা মত পরিবর্তন করতে পারেন।

    Background-color দেয়ার তৃতীয় পদ্ধতি হল আপনি যে color ব্যবহার করবেন তার নাম লিখে যেমন


    <p style="background-color:green">
    Your company
    </p>


    এখানে বলা হচ্ছে background-color হবে green আপনি চাইলে blue,red,gray ইত্যাদি ব্যবহার করতে পারেন।

    এবার design mode এ দেখুন ঠিক এই রকম



    এখন আগের মত save as থেকে Name: index.html এবং save as type HTML দিয়ে Save করুন।
    ব্যস শেষ দেখেলন তো HTML কত সহজ।
                                                 
                                                               আল্লাহ হাফেজ।।