Aione Framework 123
  • Home
  • About
    • Team
  • Documentation
    • Animation
    • Breadcrumbs
    • Cheatsheet
    • Colors
    • Components
    • FAQs
    • Features
    • Getting Started
    • Gradient
    • Grid
    • Navigation
    • Search
    • Social icons
    • Spacing
    • Tabs
    • Testimonials
    • Typography
    • Forms
  • Play
  • Builder
  • Blog
  • Contact
  • Getting Started
  • Layouts
    • Grid
    • Spacing
  • Features
    • Colors
    • Gradient
    • Animation
    • Search
    • Typography
  • Components
    • Social icons
    • Tabs
    • Navigation
    • Breadcrumbs
    • Forms
    • Buttons
    • Tables
    • Aione Message
    • Icons
    • Gallery
    • Slider
  • Example
    • Testimonials
    • FAQs
  • Cheatsheet

Recent Comments

    Archives

    Categories

    • No categories

    Meta

    • Log in
    • Entries feed
    • Comments feed
    • WordPress.org

    HEADING TAGS

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce dapibus condimentum eros

    Heading 1

    Heading 2

    Heading 3

    Heading 4

    Heading 5
    Heading 6
    View Output


    <h1>Heading</h1>

    <h2>Heading</h2>

    <h2>Heading</h2>

    <h3>Heading</h3>

    <h4>Heading</h4>

    <h5>Heading</h5>

    Bold

    The following snippet of text is rendered as bold text

    View Output

    <b>This is Bold Tag</b>

    Italics

    The following snippet of text is rendered as italicized text

    View Output

    <i>This is Italic Tag</i>

    Strong

    The following snippet of text is rendered as Strong text

    View Output

    <strong>This is Strong Tag</strong>

    Abbreviations text

    For indicating blocks of text that are no longer relevant use the<abbr> tag.
    Stylized implementation of HTML’s <abbr> element for abbreviations and acronyms to show the expanded version on hover.
    Abbreviations with a title attribute have a light dotted bottom border and a help cursor on hover,
    providing additional context on hover and to users of assistive technologies.

    attr.
    View Output

    <abbr>This is Italic Tag</abbr>

    Inserted text

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi dignissim orci in lorem tincidunt, in posuere nunc imperdiet.

    View Output

    <p>This is paragraph Tag</p>

    Underlined text

    This line of text will render as underlined

    View Output

    <u>This is underline Tag</u>

    Em Tag

    Lorem ipsum dolor sit amet, consectetur adipiscing elit.

    View Output

    <em>This is em Tag</em>

    Small Text

    This line of text is meant to be treated as fine print.


    View Output


    <small>This is small Tag</small>

    AIONE ALIGNMENT CLASSES

    Easily realign text to components with text alignment classes.

    Aione Align Left

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc pretium dolor odio, eget malesuada urna lacinia in. Donec scelerisque a orci rhoncus dignissim. Sed finibus facilisis sapien. Donec viverra varius sagittis. Pellentesque massa elit, euismod nec ultrices ullamcorper, semper sit amet eros.

    Praesent aliquet arcu eu lacus sodales, in varius nibh porttitor. Aliquam et dolor blandit, varius orci lobortis, tempor metus. Fusce molestie interdum tempor.

    Aione Align Center

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc pretium dolor odio, eget malesuada urna lacinia in. Donec scelerisque a orci rhoncus dignissim. Sed finibus facilisis sapien. Donec viverra varius sagittis. Pellentesque massa elit, euismod nec ultrices ullamcorper, semper sit amet eros.

    Praesent aliquet arcu eu lacus sodales, in varius nibh porttitor. Aliquam et dolor blandit, varius orci lobortis, tempor metus. Fusce molestie interdum tempor.

    Aione Align Right

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc pretium dolor odio, eget malesuada urna lacinia in. Donec scelerisque a orci rhoncus dignissim. Sed finibus facilisis sapien. Donec viverra varius sagittis. Pellentesque massa elit, euismod nec ultrices ullamcorper, semper sit amet eros.

    Praesent aliquet arcu eu lacus sodales, in varius nibh porttitor. Aliquam et dolor blandit, varius orci lobortis, tempor metus. Fusce molestie interdum tempor.

    Aione Align Justify

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc pretium dolor odio, eget malesuada urna lacinia in. Donec scelerisque a orci rhoncus dignissim. Sed finibus facilisis sapien. Donec viverra varius sagittis. Pellentesque massa elit, euismod nec ultrices ullamcorper, semper sit amet eros.

    Praesent aliquet arcu eu lacus sodales, in varius nibh porttitor. Aliquam et dolor blandit, varius orci lobortis, tempor metus. Fusce molestie interdum tempor.


    View Output


    <div class="Aione-align-left"> </div>

    <div class="Aione-align-right"> </div>

    <div class="Aione-align-center"> </div>

    <div class="Aione-align-justify"> </div>

    TABLES

    Be sure to use properly formed table markup with and when building a table.

    Name Item Name Item Price
    Alvin Eclair $0.87
    Alan Jellybean $3.76
    Jonathan Lollipop $7.00

    View Output


    <table class="" >

    <thead>

    <tr>

    <th>Name </th>

    <th>Item Name </th>

    <th>Item Price </th>

    </tr>

    </thead>

    </tbody>

    <tr>

    <td>Alvin </td>

    <td>Eclair </td>

    <td>$0.87 </td>

    </tr>

    <tr>

    <td>Alan </td>

    <td>Jellybean </td>

    <td>$3.76</td>

    </tr>

    </thead>

    </table >

    MEDIA QUERIES

    Skeleton uses media queries to serve its scalable grid, but also has a list of queries for convenience of styling your site across devices. The queries are mobile-first, meaning they target min-width. Mobile-first queries are how Skeleton’s grid is built and is the preferrable method of organizing CSS. It means all styles outside of a query apply to all devices, then larger devices are targeted for enhancement. This prevents small devices from having to parse tons of unused CSS. The sizes for the queries are:


    View Output


    Mobile first queries{}

    /* Larger than mobile */

    @media (min-width: 400px) {}

    /* Larger than phablet */

    @media (min-width: 550px) {}

    /* Larger than tablet */

    @media (min-width: 750px) {}

    /* Larger than desktop */

    @media (min-width: 1000px) {}

    /* Larger than Desktop HD */

    @media (min-width: 1200px) {}

    EXAMPLES

    Demo Landing Page

    Skeleton uses media queries to serve its scalable grid, but also has a list of queries for convenience of styling your site across devices.

    About

    • Documentation
    • Builder
    • Play
    • Blog
    • Team
    • Contact

    Ventures

    • OXO Solutions®
    • Make My Folio
    • Darlic®
    • AdminPie
    • Populaa

    Initiatives

    • Dkranti
    • Darlic Organization
    • Punjabi Maa Boli
    • Sikh Vichardhara
    • Skill Yoga

    Tools

    • Resources Center
    • Darlic® Tools

    Follow us

    • facebook
    • instagram
    • twitter
    • pinterest
    Copyright

    ©2025 Aione Framework 123. All rights reserved. Built with ♥ and Aione Framework.

    Copyright

    Designed by OXO Solutions®