# frozen_string_literal: true module El # represent the link tag class A < Element def initialize(**options) super('a', **options) end end end