-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0c9c16d
commit b41329a
Showing
1 changed file
with
20 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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). |