It exists a non-ionic version of this html?

My trouble is use an html non-ionic version of this code:

 <div class="list">

<a class="item item-avatar" href="#">
  <img src="venkman.jpg">
  <h2>Venkman</h2>
  <p>Back off, man. I'm a scientist.</p>
</a>

 </div>

Do you know any code that looks like this?

What is your question? You want to have code that looks like it, but isn’t from Ionic?

Yes, you’re right. I want have a component similar to that.

I found this:

      <div class="row">
  <div class="col-md-3">
  <img ng-src="">
  </div>
  <div class="col-md-9">
   <h1 style="display:block;">Something</h1>
  <p> is there.</p>
  </div>
   </div>

that’s kind of the same but bootstrap. actually the first version is the non ionic, the ionic way would be

<ion-list>
       <ion-item>
          
       </ion-item>
</ion-list>

Only if you mean that using components (directives) that do much more than what you need is “the Ionic way”.
I rely on Ionic’s CSS for simple lists like this, there is no advantage to using the directives that add more features if you do not use any of these (you just make the app slower because bloated).