EDDYMENS

Eddymens (List page)


Last updated 2022-10-15 03:36:13

Fieldset And Legend HTML Tags: What Are They For?

There are high chances you have never had to use the or . The tag is used to group related inputs and the tag is used to label the group. You do get a bit of styling when you use the and tags, something similar to the example below. This creates some form of a grouping of input...

Last updated 2022-10-08 08:25:32

Horizontally Aligning List Items (li) Within An Unordered List (ul)

One reason for wanting to display an ordered list horizontally is for the implementation of pagination. An HTML UL element is a perfect element for creating square-shaped page numbers in a list form by applying different CSS styles. The code snippet below shows you how to convert the defau...

Last updated 2022-10-08 04:00:41

Here's How To Create A Responsive Pagination Outline | Scrollable

Displaying all page numbers can distort your page if there are too many of them. You can prevent this by applying a horizontal scrolling effect to the pager. By applying a scroll effect you can tack away page numbers that don't fit the page and access them by scrolling. The code below show...

Last updated 2022-09-21 03:42:40

A Guide To Creating Headings In Markdown

A heading in any document seeks to provide a brief explanation of what the subsequent text is about. Generally, there are about six types of headings, and each comes with a different font size. Markdown provides a syntax for all six heading types as seen in the examples bel...

Last updated 2022-07-01 04:15:52

How To Build A Serverless Contact Form With Digital Ocean Functions

This tutorial walks you through creating a serverless contact form handler for your static site using Digital Ocean functions . As part of the setup, we will be st...

Last updated 2019-08-21 06:06:33

What The Heck Is GraphQL

Definition GraphQL in itself is a specification describing a new way an app or web frontend asks for data from the server. This specification is built into libraries we end up implementing on our server-side as well as the client-side of our apps. Meaning if you are building...