Contents
HTML ins: Main Tips
- The HTML
<ins>
tag marks texts added to web pages. - <del> is an opposite element of
<ins>
HTML since it marks the deleted content.
Use and Purpose of ins
HTML <ins>
defines an inserted text in a document.
<h2>The movie scheduled to be released on <del>April 2017</del> <ins>July 2017.</ins></h2>
Note: web browsers normally add the text-decoration CSS property with a value of line-through for deleted text and a value of underline for inserted text.
- Easy to use with a learn-by-doing approach
- Offers quality content
- Gamified in-browser coding experience
- The price matches the quality
- Suitable for learners ranging from beginner to advanced
- Free certificates of completion
- Focused on data science skills
- Flexible learning timetable
- Simplistic design (no unnecessary information)
- High-quality courses (even the free ones)
- Variety of features
- Nanodegree programs
- Suitable for enterprises
- Paid Certificates of completion
- A wide range of learning programs
- University-level courses
- Easy to navigate
- Verified certificates
- Free learning track available
- University-level courses
- Suitable for enterprises
- Verified certificates of completion
Attributes Used With ins
cite
It defines a web location, containing the reason for adding the inserted text.
<h2>The movie scheduled to be released on <del>April 2017.</del> <ins cite="production-house-news-july-2017.html">July 2017.</ins></h2>
datetime
It defines date and time when the text was added.
<h2>The movie scheduled to be released on <del>April 2017.</del> <ins datetime="2017-07-15T21:30:00Z">July 2017.</ins></h2>