HTML and CSS basics
The HTML markup language tells the browser how contents are structured, for example, where images, texts, hyperlinks, and so on, are located. For this structuring, there are various commands, so-called HTML tags.
HTML tag
An HTML tag is an individual HTML command. HTML tags mark the start and end of a particular area.
In general, a tag follows the following scheme:
<tagname>Content</tagname>
A tag can have various attributes. The most important attributes for formatting are "class" and "id".
"Text field" example:
<input type="text" id="email" class="login">
The elements are formatted using CSS. Within the CSS file, a particular tag can be addressed using the tag name, class or ID.
Addressing using the tag name
input{
// style instructions
}
All HTML "input" tags are addressed with this notation. The input tag is used for various form input fields. Text fields, radio buttons, check boxes and buttons are reproduced using the "input" tag. The CSS instructions that are defined within the curly brackets therefore apply to all these elements.
More specific addressing is possible using classes and IDs.
Addressing using classes and IDs
To address classes, a dot is always placed in front of the class name.
Example
.login{
}
IDs, on the other hand, are referenced using a hash.
Example
#email{
}
We will present in the following the Web developer tools that simplify the design of dynamic Web pages.
Inxmail Professional:
2 possible use cases
Depending on your contract, you might use Inxmail Professional in different ways:
-
As part of the Inxmail platform: You use newsletters & campaigns as your main tool for creating and sending newsletters. Inxmail Professional only serves as a recipient database and configuration tool in the background.
We are constantly expanding the functionality of “Newsletters & Campaigns”. Check out newsletters & campaigns section to find out if the feature you are looking for might already be available there.
-
Full scope: You use the legacy tool Inxmail Professional as your main tool for creating and sending newsletters.
Did you not find what you were looking for?
-
Send us your feedback.