After using inline and imported CSS loads without any issues, I am now facing difficulties with external CSS which I have never used before.
I decided to copy and paste everything from this provided CSS link into a separate CSS file. However, I have yet to determine which animations I want to keep or remove. That decision will be made later on.
My main question is how to actually incorporate this external CSS file into the HTML document. Currently, my HTML header includes the following:
<link rel="stylesheet" type="text/css" href=\animate.css">
By linking my HTML to the CSS file, I believe I have completed that step. But now, if I wanted to apply the .animated.hinge
animation to a <p>
element, how should I go about doing so?
I would prefer a solution that does not involve JavaScript or PHP, as I have not delved into those areas yet. Any advice would be greatly appreciated!