1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//! HTML provides a number of elements which can be used together to create forms which the user can fill out and submit to the website or application.
mod input;
pub use input::*;
mod meter;
pub use meter::*;
mod output;
pub use output::*;
mod fieldset;
pub use fieldset::*;
mod button;
pub use button::*;
mod optgroup;
pub use optgroup::*;
mod option;
pub use option::*;
mod textarea;
pub use textarea::*;
mod progress;
pub use progress::*;
mod datalist;
pub use datalist::*;
mod label;
pub use label::*;
mod form;
pub use form::*;
mod select;
pub use select::*;
mod legend;
pub use legend::*;