coffee-code-create-blog
8 posts
Don't wanna be here? Send us removal request.
Text
CSS Box Model
The Box Model is how CSS governs white-space and borders around elements.
The CSS Box Model All HTML elements can be considered as boxes. In CSS, the term "box model" is used when talking about design and layout. The CSS box model is essentially a box that wraps around every HTML element. It consists of: margins, borders, padding, and the actual content.
0 notes
Text
Typography
Using Google Fonts to speed up your workflow by embedding your font selection using the @import feature or using and specifying the CSS in your stylesheet is a great way to use free Google approved fonts in your projects.
Always make sure to check the permissions and restrains of using a font on a commercial site to ensure no copyright or permission issues.
1. Embed
To embed these fonts into a webpage, copy this code into the <head> of your HTML document.
STANDARD
@IMPORT
<link href="https://fonts.googleapis.com/css?family=Gelasio|Roboto&display=swap" rel="stylesheet">2. Specify in CSS
Use the following CSS properties to specify these families:
font-family: 'Roboto', sans-serif;
font-family: 'Gelasio', serif;
0 notes
Photo
List Types:
There are two list types in HTML, these are ordered lists and unordered lists.
Unordered HTML List
An unordered list starts with the <ul> tag. Each list item starts with the <li> tag. The list items will be marked with bullets (small black circles) by default.
Ordered HTML List
An ordered list starts with the <ol> tag. Each list item starts with the <li> tag.The list items will be marked with numbers by default.
0 notes
Text
HTML Elements
Elements are the building blocks of web pages. Elements can include: paragraphs, headings, images, links…
Most HTML tags have a start tag to indicate where they begin and a end tag to indicate where they end. In the below image it shows the opening tag, enclosed is the content ending with a closing tag.
0 notes
Link
A Podcast by Dr Wasim Akhtar interviews AI expert, Toby Walsh
The talk of Artificial Intelligence (AI) is on the rise and with it, the reality that things were once only seen as sci-fi are fast become sci-fact.
AI has been around for years and the technology people are amazed by today, is not new. Maybe the recent increase is due to people fearing job security as the looming threat of being made redundant seems to be growing ever closer.
Recent Netflix documentary, AlphaGo has created awareness of this superintelligence capable of completing certain tasks far better than humans all whilst learning at an accelerated rate than what humans are capable of.
The truth remains that AI is data-driven and becomes improved by deep learning algorithms, as it is superior in maintaining a narrow focus on tasks where humans instruct them on what to do and their ability to retain data given to it.
However, it differs greatly from humans in one significant aspect. The ability to execute tasks with emotional intelligence and adaptability as well as logic. It can not do tasks which require free will and consciousness. The progress on artificial intelligence is narrow as general they lack general common sense.
So, How long before humans are actually preceded by robots? It is not possible to accurately estimate that at this time, but as Toby Walsh said, “You can’t have machines deciding whether humans live or die,” and until they are able to replicate that type of emotional intelligence humans will not be made redundant.
0 notes
Text
Who maintains HTML

A great resource when learning how to code is W3C as they maintain the international standards organization for the World Wide Web. The founder is Tim Berners Lee and full-time staff for the purpose of working together in the development of standards for the World Wide Web.
0 notes
Photo
WordPress Folder Hierarchy
They are essentially collections of different template files that work together and produce the overall design of your website. ... WordPress will look for files in a theme to use to render the current page in a specific order. This is called a 'template hierarchy', that is used to create and extend WordPress themes.
0 notes
Text
What is HTML?
HTML is a abbreviation for Hyper Text Markup Language which describes the structure of a Web Page. It consists of a series of elements which tell the browser how to display content. HTML elements tell the browser how to display the content, elements are represented by tags. Tags can be seen as a label which pieces together content such as "heading", "paragraph", "table", and so on...Browsers don't display the HTML tags but rather use them as instructions to render content on the web page.
0 notes