Inserting a 150px Logo into a note as a Logo - Help Needed

I am trying to insert a logo into a note. I have tried many variations of the <img src syntax,
Eg (minus the extra quotes):
“<“img src=“2 - EXTRAS/IMAGES/NoteLogo.png” alt=“Note Logo” style=“position: absolute; top: 20px; right: 20px; width: 150px; height: auto;” /”>”

“<“img src=“files:///2 - EXTRAS/IMAGES/NoteLogo.png” alt=“Note Logo” style=“position: absolute; top: 20px; right: 20px; width: 150px; height: auto;” /”>”

Using the <img syntax produces a small image icon in the right corner of the document but no image shows up.

The only way I have been able to get the image to show is by using a wikii formatted link:
![[2 - EXTRAS/IMAGES/NoteLogo.png|150]]

I have also tried applying a CSS class to the image. The class moves the image placeholder into position but the actual images fails to load:

CLASS
.NoteLogo_UpperRight {
position: absolute;
top: 10px; /* Pixel unit added /
right: 20px; /
Pixel unit added /
max-width: 100px; /
Image width limit /
padding: 0px; /
Optional: Adds some space around the image */
}

IMAGE STATEMENT IN THE NOTE:
“<“img src=“2 - EXTRAS/IMAGES/NoteLogo.png” class=“NoteLogo_UpperRight” alt=“Logo” /”>”

The directory where the image resides has been defined as the vault attachment directory

Thank you so much for your attention and participation.
-Tim C.

This syntax works in a local vault. The full path would need to be adjusted, but …

<img src="file:///Users/NAME/Library/Mobile Documents/iCloud~md~obsidian/Documents/test/2 - EXTRAS/IMAGES/NoteLogo.png" alt="Note Logo" style="position: absolute; top: 20px; right: 20px; width: 150px; height: auto;">

Thank You, Hampton

Any tips you can offer on using this technique in a template?

Use-CAse:
I have a Project directory framework setup
Was planning on simply making a copy of the whole directory structure to setup new projects
Would of like to have had the Note Logo reside in the new instance of the project that way I could place the applicable logo in the project.

My initial thought on this technique is it will require me to edit the note template for each instance of a project to define the correct path to the new project logo.

I guess what I am asking is do you know why the img src cannot locate the image in the current directory the note it will be embedded in?

Again, thank you for showing me how to do that it is definitely usable work around.
Best Regards
-Tim C.

THIS LINK DISCUSSING THE LIMITATION OF VIEWING IMAGES VIA HTML:

nuthrash/obsidian-html-plugin: This is a plugin for Obsidian (https://obsidian.md). Can open document with .html and .htm file extensions. (github.com)

THIS LINK EXPLAINS THAT VIEW IMAGES VIA HTML IS AN OBSIIDAN RESTRICTION AND SHOWS HOW TO WORK AROUND IT:

Allow embed of Local images using ![](file:///…) - Feature archive - Obsidian Forum

THIS COMMUNITY PLUGIN PLUGIN SOLVES THE ISSUE, supposedly, I have yet to figure out how to use it
“Display Relative Path Img”
dyc2424748461/obsidian-display-relative-path-img: Display the relative path image referenced by in Obsidian without altering the original document (github.com)

If someone figures out how to use it, please pass it along.
Best Regards
-Tim C.