Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
UIMSolutions committed Feb 12, 2024
1 parent 0c9c16d commit b41329a
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
# Library 📚 uim-html
Library to work with Html5 in D.

uim-html embeds HTML creating with D coding.
**HTML (HyperText Markup Language)** is the standard markup language for creating **Web pages**. It defines the **structure** and **content** of web content. HTML allows you to create headings, paragraphs, links, images, forms, and other elements that make up a web page. Browsers read HTML documents and display them correctly.

```html
<!DOCTYPE html>
<html>
<head>
<title>My Web Page</title>
</head>
<body>
<h1>Welcome to My Website</h1>
<p>This is a paragraph of text.</p>
<a href="https://www.example.com">Visit Example.com</a>
</body>
</html>
```

In this example:

- The `<!DOCTYPE html>` declaration specifies that this document is an HTML5 document.
- The `<html>` element is the root element of the page.
- The `<head>` section contains meta information (like the page title).
- The `<body>` section contains visible content (headings, paragraphs, links).

0 comments on commit b41329a

Please sign in to comment.