Posts

HTML Editors

Image
Write HTML Using Notepad or TextEdit 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) Open Notepad in Windows 8 or later: Open the  Start Screen  (the window symbol at the bottom left on your screen). Type  Notepad . Open Notepad in Windows 7 or earlier: Click  Start  (bottom left on your screen). Click  All Programs . Click  Accessories . Click  Notepad . Step 1: Open TextEdit (Mac) Open TextEdit . Please be sure that the text editor is set to  plain text.  Go to:  Preferences > New Document > select plain text. Also make sure both  "Display html file as html code"  and  "Display RTF fi...

01-HTML Introduction

Image
What is HTML? HTML is a  markup  language for  describing  web documents (web pages). HTML stands for  H yper  T ext  M arkup  L anguage A markup language is a set of  markup tags HTML documents are described by  HTML tags Each HTML tag  describes  different document content A Small HTML Document Example < !DOCTYPE  html > < html > < head > < title > Page Title < /title > < /head > < body > < h1 > My First Heading < /h1 > < p > My first paragraph. < /p > < /body > < /html > Example Explained The  <!DOCTYPE html>  declaration defines this document to be HTML5 The text between  <html>  and  </html>  describes an HTML document The text between  <head>  and  </head>  provides information about the document The text between  <ti...

LG made an 18-inch display you can roll up like a newspaper

Image
LG Display has a prototype 18-inch screen it's showing off at the Consumer Electronics Show this week that rolls up like a piece of paper. The technology builds on LG's forward-looking OLED work focusing on bendable, rollable, and curving displays. The company showed similar technology last year as a proof of concept, but kept images behind closed doors. Now LG looks ready to show the world. We've  seen this type of concept display  from the likes of  Sony ,  Samsung ,  Sharp , and others in the past. However, it does indicate that LG sees these types of futuristic displays as differentiation points for smartphones, tablets, and TVs. LG envisions these types of screens rolling up into our pockets or being made to wrap around interior spaces, and the company will show off a 25-inch curved screen installed on the inside of a car at its Auto Zone section on the show floor. WE'VE SEEN THIS BEFORE, BUT IT'S STILL SUPER COOL We'll get a closer look at...

BEST 5 WEBSITE TO IMPROVE YOUR CODING SKILL

Image
Top 5 website you should know to improve your coding career 1 .CodeCombate It is known as a favourite and awesome website to learn coding by just playing the games. When Learn to code sometime might feel sleepy because it look so complicated and messy. Oh, you have tried any trick to motivate yourself to spend time to learn the code without sleep, so let try with code combat you play to learn. It has any gameplay that shows you on the left hand side of the website as an example of your coding and just Playing this game mean you are now practicing the coding which appear the result in front of you. Let start by Join CodeCombat now by visiting  codecombat.com 2 .Code.org Learning Step by Step with massive example, it might be enough to encourage you to learn coding everyday with code.org especially for the young people. Young People are great and Smart nowadays includes you and it’s time to start your coding career with this site. It is mad to help your...

Android Code Editor Apps for Developer

Image
Below, I have listed code editors for you to make your coding work easy: 920 Text Editor The 920 Text Editor is the best code editor tool obtainable in the market, offering multi-language support with all languages like DroidEdit. If your requirements are less and want a perfect editor, then you must check out 920 Text Editor. The tool comes with exclusive features like: Allow to Run With Root Permissions Auto Indentation Show Line Numbers & Blank Characters Toolbar for Instant Access Show Recently Opened File History Automatically Open File Encoding Detection DroidEdit When it comes to DroidEdit, it is the most flexible and feature-rich text editor for Android users. The tool has a top position in the market for delivering wonderful results. If you want to begin with the test editors, you should try out this tool. Enormous features of the DroidEdit are: Allow to Search, Undo, Redo & Replace Auto and Block Indention Character Encoding Support Runs on Ex...

5 Ways To Learn Programming Faster

Image
5 Ways To Learn Programming Faster 1. Look at the Example Code Reading is usually about the words on the page, but learning to program is about  code . When you’re first learning to program, you should make sure to look at, and try to understand, every example. When I first learned to program, I would sometimes read the code examples before the text, and try to figure out what they did. It doesn’t always work, but it did force me to look at the example very carefully, and it often helped make the writeups clearer. If you want to see what sample code looks like, you can read this site’s introductory programming tutorial. This tutorial spends a great deal of time talking about the sample code to help you work through exactly what the code does. 2. Don’t Just Read Example Code–Run It But when you’re reading a  programming  tutorial (or book), it’s easy to look at the sample code and say “I get it, I get it, that makes sense”. Of course, you might get it, but yo...