Categories for Portfolio

WEBD-100 Class Introduction

Welcome to WEB TECH 1 What will you learn here? In this course you will learn HTML, CSS, design/development and servers/hosting. You will also learn various programs such as Adobe Dreamweaver (and other associated Adobe products), Visual Studio Code as well as FileZilla. But as much as you will learn these things, you will also… View Article

MDCP 102 – Intro to CMS Systems & WordPress (Web)

Intro to WordPress What is WordPress? Before we answer this question, we should ask: what are content management systems? Content Management Systems are software/web applications that are used to manage the creation, modification and deletion of digital content. Content management systems are built with programming languages, such as PHP which run server side code to… View Article

MDCP 102 – BG Gradients & Logos

BG Gradients & Logos Background gradients We can make background gradients very easily using CSS. .header { background: linear-gradient(); } If we select an object, we can use the background property and give it the linear gradient rule. .header { background: linear-gradient(45deg, rgb(0, 115, 255), rgb(255, 0, 221)); } After that, we need to give… View Article