web_dev

Concepts of Web Development

November 12, 2020
projects, web_dev

A website is rendered in a web browser through the HTTP Protocol. There’s a lot more one should learn about Internet Protocols, but it’s not required to get an operational understanding of working with websites. Web Design Principles The page that is rendered by the web browser is formatted in Hypertext Markup Language or HTML for short. HTML is a set of nested tags that describe how the page should be structured. ...

Process from idea to Product

October 28, 2020
projects, web_dev

Building a website follows many of the principles of building a software application, which includes figuring out what to build ,managing the building, and validating the quality of the final product. In software development this specifica refers to various phases of structured activities such as planning (such as gathering spec requirements), scheduling the work, development, and test. The name for this set of phases is called Software development lifecycle (SDLC). Some of these phases are described below. ...

Starting a Website

October 28, 2020
projects, web_dev

This section focuses on the process, concepts, and tools for building any type of web site or web application. A website has a lot of overlapping functionality and technology as a web application, except it doesn’t focus on high volume of dynamism and user interactivity, which would require a database. This article mentions the two interchangeable. However, if one were precise, this article focuses on websites.

Github Pages

April 20, 2020
git, web_dev

What is Github Pages? # This is a feature provided by GitHub where you can host websites directly from your GitHub repository. These websites are typically static files, meaning there is no database no backend. For example, this website is hosted on GitHub Pages, it was built with a static site generator. To find out more, go to https://pages.github.com How to create your home page (easy way) # When you use GitHub pages, you can access your website at the url http://username. ...