Text Allignment Related Issue

How can use html code for push just a LITTLE BIT up the names for allignment the text with image .
Plz see the below screen shot and suggest.
image.png (13.5 KB)

@RiteshK10 You can achieve this by specifying vertical-align of text span. For example see the following html:

<html>
<body>
    <p><img src="C:\Temp\img.png" /><span style="vertical-align: 20pt;">text</span></p>
    <p><img src="C:\Temp\img.png" /><span style="vertical-align: 20pt;">text</span></p>
    <p><img src="C:\Temp\img.png" /><span style="vertical-align: 20pt;">text</span></p>
</body>
</html>

Here is result of conversion this HTML to DOCX. out.docx (10.2 KB)