About 188 results
Open links in new tab
  1. Styling html text without CSS - Stack Overflow

    Feb 22, 2014 · How do I modify the size of a button (and the text inside) in HTML5 without using any form of CSS or JavaScript?

  2. css - Styling Text without HTML Tag? - Stack Overflow

    Jan 16, 2014 · You can apply default styling to all text in your document using the CSS universal selector (*) or the body tag. –

  3. Using CSS without HTML - CSS-Tricks

    Dec 14, 2010 · In response to this, I created this quick demo (view in Firefox or Opera), illustrating that technically you don’t need any HTML at all to use CSS. Since this demo apparently caused some confusion among tweeps, I decided to write an article about it.

  4. html - How to line-break from css, without using ? - Stack Overflow

    How to achieve same output without <br>? output: You can use white-space: pre; to make elements act like <pre>, which preserves newlines. Example: white-space: pre; often better than pre is pre-line, which allows wrapping.

  5. How to add color in HTML without CSS - GeeksforGeeks

    Mar 4, 2024 · However, there are several approaches to add color directly in HTML, without using CSS. We will discuss the following approaches to add color without CSS in HTML Elements. Use <font> tag to specify the color of text within the tag. In font tags, we have to use color attributes to provide color names or codes.

  6. Style your next blog with vanilla HTML. No CSS.

    Jun 12, 2020 · A classless CSS framework to write modern websites using only HTML. It weighs 4.8kb. All it does is set some sensible defaults and styles your HTML to look reasonable. It's perfect for: A dead-simple blog; Collecting your most used links; Making a simple "about me" site; Rendering markdown-generated HTML; Demo: newcss.net

  7. How to Break Line Without using <br> Tag in HTML / CSS?

    Jun 24, 2024 · Breaking lines in HTML without <br> tags can be achieved using block-level elements such as <div> or <p> combined with CSS properties like display: block; or display: inline-block; and others. These elements naturally wrap text or content, facilitating clean and structured layout design without manual line breaks.

  8. Style beautiful web pages without writing any CSS. Using W3.CSS.

    Dec 8, 2018 · W3.CSS is a modern, easy to learn CSS framework, that allows for responsiveness and works across a variety of browsers and platforms. In order to style pages using this framework, you only need to import it by adding the following entry in your HTML page: OK, but what can you style?

  9. indent in html without css - Code Snippets with explanation

    Aug 4, 2023 · Indentation in HTML text, can be performed without resorting to CSS style rules. This article will walk you through the process of creating an indentation without using CSS, using a simple code snippet as an example. An example …

  10. Creating Underline text in HTML (With or Without CSS)

    Jul 20, 2022 · In this article, I have provided working sample to create underlined text in HTML without CSS and using CSS property like text-decoration or border-bottom.