Showing posts with label notepad. Show all posts
Showing posts with label notepad. Show all posts

Sunday, December 27, 2015

How to Open Notepad

Notepad is a simple text editor for Microsoft Windows and a basic text-editing program which enables computer users to create documents(wikipedia)

how to open
Windows 7
1. Click Start 
2. Type "Notepad"
3. Click Enter
or
1. Click Start -> all programs -> accessories -> Notepad

Windows 8 
1. Type "Notepad" on Start Screen
2. Click on Notepad to open it
On the Metro Start screen, type: notepad
•    Notepad will appear on the left of your screen
•    Click Notepad to open it

Windows 10
1. Click Start
2. All Apps
3. Windows Accessories
4. Click Notepad

That's IT!
0

How to Create HTML basic page

This short tutorial will make you an instant web developer. 
HTML stand for Hyper Text Markup Language. The markup tells the Web browser how to display a Web page's words and images for the user.
let's start from scratch

Requirements :
1. Make sure you have installed browser (Internet Explorer, Google Chrome, Safari, Firefox etc)
2. Notepad (pre-installed program on windows) 

Steps :
1. Open Notepad (how to open Notepad?)
2. Type some basic HTML tag to show on browser : (what is HTML Tag?) what is HTML Tag?

<HTML>
 <HEAD>
  <TITLE>Your Informatics My Title</TITLE>
 </HEAD>

 <BODY>
 This content will be displayed on your browser 
 </BODY>

</HTML>

3. Now save your work with Ctrl+S or click File->Save
4. Type your HTML file name with myweb.html, or just named it as you desire.


5. Your new webpage is ready. Right click on your new HTML->open with->choose your browser

6. Your webpage should be shown like this

your webpage not shown like that? you may have some problem here. some problem here

That's IT!

0