I hope you are well.
Im really struggling to simplify the HTML below, I was wondering if you can help me to do so?, I do still want to keep the output as presented code,
Okay. I see you are using too many span elements and using
elements to break the line, which although will render but is not quite an efficient thing to do. What I would suggest, you should use div
element where you think you will break the line, so wrap that content in a div element because div
elements are by default block
elements and span
elements are by default inline
elements. Here is my suggestion in implementation.
.blue {
color:#005ad2;
}
.font10pt {
font-size: 10.5pt !important;
}
.defaultClass {
text-indent: 0px;
font-size: 14px !important;
font-family: "Segoe UI Semilight", sans-serif;
line-height: normal;
font-size: medium;
-webkit-text-stroke-width:0px;
}
I need the support
If you believe your issue is not resolved, via
Google Online.
PS: Keeping things in the tags is a better approach then to keep the text raw in the page. Such as I have placed "If you believe your issue is not resolved, via" this line and the element side by side, but it would be better if you wrap it inside a
element so you know for sure that this text would be rendered as inline text with the anchor element.
Happy coding!