Posts

Showing posts from June, 2020

Cascading Style Sheets(CSS)

        Cascading Style Sheets         programming language   Cascading Style Sheets is a style sheet language used for describing the presentation of a document written in a markup language like HTML. CSS is a cornerstone technology of the World Wide Web, alongside HTML and JavaScript.   CSS is designed to enable the separation of presentation and content, including layout, colors, and  fonts . This separation can improve content accessibility, provide more flexibility and control in the specification of presentation characteristics, enable multiple web pages to share formatting by specifying the relevant CSS in a separate .css file, and reduce complexity and repetition in the structural content. Separation of formatting and content also makes it feasible to present the same markup page in different styles for different rendering methods, such as on-screen, in print, by voice (via speech-based browser ...

JAVA PROGRAMMING LANGUAGE.

Image
JAVA PROGRAMMING LANGUAGE✔ Java is a platform where you can make your own program like android app and other program using coding.Java is most popular programming language. Java  is a general-purpose programming  l anguage  that is class-based  object-oriented  and designed to have as few implementation depencies  as possible. It is intended to let  a pplication developer   write once, run anywhere  (WORA), meaning that compiled  Java code can run on all platforms that support Java without the need for recompilation. Java applications are typically compiled to bytecode  that can run on any Java virtual machine  (JVM) regardless of the underlying computer architecture . The syntax of  Java milar to C  andC++ , but it has fewer low level  facilities than either of them. As of 2019, Java was one of the most popular programming language in use  according to  G ithub , particularly for client ...

HTML TUTORIAL.(HyperText Markup Language)

Image
                  HTML TUTORIAL. HTML (Hypertext Markup Language) stand for markup language for document designed to be web browser.  It can be assisted by technologies such as cascading style sheets (CSS) and scripting language  such as Javascript . HTML   Elements  are the building blocks of HTML pages. With HTML constructs,  i mages  and other objects such as interactive forms  may be embedded into the rendered page. HTML provides a means to create   structure documents  by denoting structural s emantics  for text such as headings, paragraphs, lists,  l inks , quotes and other items. HTML elements are delineated by  tags , written using  a ngle brackets . Tags such as  < img   />  and  < input   />  directly introduce content into the page. Other tags such as  < p >  surround and provide information about...