Posts

Showing posts from April, 2019

Learn with Kbdk: HTML Editors

Image
 HTML Editors Web pages can be created and modified by using professional HTML editors. However, for learning HTML we recommend a simple text editor like Notepad (PC) or TextEdit (Mac). We believe using a simple text editor is a good way to learn HTML. Follow the four steps below to create your first web page with Notepad or TextEdit. Step 1: Open Notepad (PC) or  Open TextEdit (Mac) Step 2: Write Some HTML Example : < !DOCTYPE html > < html > < body > < h1 > My First Heading < /h1 > < p > My first paragraph. < /p > < /body > < /html > Step 3: Save the HTML Page Save the file on your computer. Select File > Save as in the Notepad menu. Name the file "index.htm" and set the encoding to UTF-8 (which is the preferred encoding for HTML files). Step 4: View the HTML Page in Your Browser Open the saved HTML file in your favorite bro

Learn with kbdk :Adding VBScript Code to an HTML Page

Image
Adding VBScript Code to an HTML Page You can use the SCRIPT element to add VBScript code to an HTML page. The <SCRIPT> Tag VBScript code is written within paired <SCRIPT> tags. For example, a procedure to test a delivery date might appear as follows: <SCRIPT LANGUAGE="VBScript"> <!-- document.write(“Hi”) --> </SCRIPT> Beginning and ending <SCRIPT> tags surround the code. The LANGUAGE attribute indicates the scripting language. You must specify the language because browsers can use other scripting languages. You can use SCRIPT blocks anywhere in an HTML page. You can put them in both the BODY and HEAD sections. However, you'll probably want to put all general-purpose scripting code in the HEAD section in order to keep all the code together. Keeping your code in the HEAD section ensures that all code is read and decoded before it's needed by any calls from within the BODY section.

Learn with kbdk: Adding VBScript Code to an HTML Page

Adding VBScript Code to an HTML Page You can use the SCRIPT element to add VBScript code to an HTML page. The <SCRIPT> Tag VBScript code is written within paired <SCRIPT> tags. For example, a procedure to test a delivery date might appear as follows: <SCRIPT LANGUAGE="VBScript"> <!-- document.write(“Hai”) --> </SCRIPT> Beginning and ending <SCRIPT> tags surround the code. The LANGUAGE attribute indicates the scripting language. You must specify the language because browsers can use other scripting languages. You can use SCRIPT blocks anywhere in an HTML page. You can put them in both the BODY and HEAD sections. However, you'll probably want to put all general-purpose scripting code in the HEAD section to keep all the code together. Keeping your code in the HEAD section ensures that all code is read and decoded before it's needed by any calls from within the BODY section.

Learn with kbdk : Introduction to VB Script

Image
VB SCRIPT What Is Vb Script ? Microsoft Visual Basic Scripting Edition, the newest member of the Visual Basic family of programming languages brings active scripting to a wide variety of environments, including Web client scripting in Microsoft Internet Explorer and Web server scripting in Microsoft Internet Information Server. Easy to Use and Learn If you already know Visual Basic or Visual Basic for Applications, Vb Script will be very familiar. Even if you don't know Visual Basic, once you learn Vb Script, you're on your way to programming with the whole family of Visual Basic languages. Although you can learn about Vb Script in just these few Web pages, they don't teach you how to program. To get started programming, take a look at Step by Step books available from Microsoft Press.

Learn with Kbdk: AMP Introduction

Image
AMP or Amplify your mobile webpages The  Accelerated Mobile Pages  ( AMP ) Project is a  website  publishing technology developed by Google. Introduction An AMP HTML tutorial - learn the different building blocks of an AMP HTML file. AMP HTML is entirely built on existing web technologies. It achieves reliable performance by restricting some parts of HTML, CSS, and JavaScript. To make up for those limitations AMP HTML defines a set of custom elements for rich content beyond basic HTML. This sample shows what's necessary to create a valid AMP HTML file. The doctype declaration is required. <!doctype html> This tells everyone that this is an AMP file.  <html amp>  works too. < html ⚡ > Head The charset definition must be the first child of the  <head>  tag. < meta charset = "utf-8" > The AMP runtime must be loaded as the second child of the  <head>  tag. < script async src = "ht