Pronounced O-rocks
Is an extinct cattle species, considered to be the wild ancestor of modern domestic cattle. With a shoulder height of up to 180 cm (71 in) in bulls and 155 cm (61 in) in cows, it was one of the largest herbivores in the Holocene; it had massive elongated and broad horns that reached 80 cm (31 in) in length. Wiki
Brings some of the JavaScript functionality of creating HTML elements to Rust
```rs use aurochs::{ Document, Element };
fn main() { let mut html = Document::createelement(Element::HTML); html.setattribute("lang", "en");
let mut title = Document::create_element(Element::TITLE);
title.inner_text("Aurochs");
let mut head = Document::create_element(Element::HEAD);
head.append_child(title);
let mut paragraph = Document::create_element(Element::P);
paragraph.inner_text("Hello World!");
let mut body = Document::create_element(Element::BODY);
body.append_child(paragraph);
html.append_child_list(vec![ head, body ]);
println!("{}", html.render());
/*
<html lang="en">
<head>
<title>Aurochs</title>
</head>
<body>
<p>Hello World!</p>
</body>
</html>
*/
} ```