Posts

Showing posts from December, 2020

HTML intro

Image
HTML Introduction  Basically, HTML code looks just like regular text. The most identifiable feature of HTML code is the use of  angle brackets . These angle brackets enclose the markup code which tells the browser how to display the document data. Here’s an example of some simple HTML code: <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>This is a heading.</h1> <p>This is a paragraph.</p> </body> </html>   There are three components that form the basic building blocks of HTML code: tags, elements and attributes. Once you’ve learned the rules for how each of these components function, you should have no trouble writing and editing HTML. heading tag Paragraph tag   Text formatting tags <b> – Bold text <strong> – Important text <i> – Italic text <em> – Emphasized text <mark> – Marked text <small> – Small text <del> – Deleted ...
Image
  INTRODUCTION OF WEB DEVELOPMENT Front-end development refers to constructing what a user sees when they load a web application – the content, design and how you interact with it. This is done with three codes – HTML, CSS and JavaScript. Back-end development controls what goes on behind the scenes of a web application. A back-end often uses a database to generate the front-end. Full stack developers:  Full stack developers do bits of both backend and frontend we’ll need two tools that every web developer uses: A text editor to write code - Visual Studio A web browser to see what we’re building - Firefox, Chrome language that we are going to use  Front design: HTML, CSS Client side: JavaScript Server side: PHP, Node.js, Ruby, Python Database: SQL, MongoDB

Flowchart

Image
  Flowchart introduction A flowchart is a type of diagram that represents an algorithm or process. There are 6 basic symbols commonly used in Flowchart. Basic symbols used in Flowchart  1 Terminal Indicates the starting or ending of the algorithm. 2 Input/Output Use for Input/Output (I/O) operation 3 Process Indicates any type of internal operations like initialization, calculation etc. 4 Decision Use for asking questions that can have either TRUE or FALSE (YES or NO) as an answer. 5 Connector Connectors are used to connect breaks in the flowchart. If a flowchart takes more than one page, then to connect the flowchart between pages we use the connector. 6 Control Flow Show direction of flow. Using a flowchart has a variety of benefits: It helps to clarify complex processes. It identifies steps that do not add value to the internal or external customer, including delays; needless storage and transportation; unnecessary work, duplication, and added expense; breakdowns in communi...

Pseudocode and Trello

Image
Pseudocode Pseudocode  is an informal way of programming description that does not require any strict programming language syntax or underlying technology considerations. It is used for creating an outline or a rough draft of a program.  Pseudocode  summarizes a program's flow, but excludes underlying details.  it cannot be compiled into an executable program. It uses short terms or simple English language syntaxes to write code for programs before it is actually converted into a specific programming language. This is done to identify top level flow errors, and understand the programming data flows that the final program is going to use. • Pseudocode is understood by the programmers of all types. • it enables the programmer to concentrate only on the algorithm part of the code development. • It cannot be compiled into an executable program.  Trello Trello is a web-based Kanban-style list-making application which is a subsidiary of Atlassian. Originally created b...

Introduction to terminal

Image
Terminal and nano text editor Ubuntu terminal  Ubuntu terminal is similar to command line which help to do code or to command as user or administrator. There are many terminal command in Ubuntu here are some example given below which will help to access terminal easily. Cat : It is generally used to concatenate the files. It gives the output on the standard output. Mkdir : Used to create a directory if not already exist. It accepts directory name as input parameter. Cp : This command will copy the files and directories from source path to destination path. mv : Rename or move file or directories  ls   :  List of folder or directories  ls -R : display folder and sub folder cd : (filename) change directory rmdir : delete directories touch : create  new file such as text or pdf rm : remove file cd : return to home cd .. :  return to previous directories pwd : out put the path of the directories clear : clear all the screen content man : de...