Example Homepage Setup - ParitoshBh/grav-coder GitHub Wiki

The homepage accepts HTML code and as such you can create it the way you want, however, to get going and replicate the screenshot, here's the code snippet

<div class="about">
  <h1>Paritosh Bhatia</h1>
  <h2>Software Engineer, Open Source Enthusiast</h2>
</div>

and to add an image, update the code as follows,

<div class="about">
  <div class="avatar">
  	<img src="https://picsum.photos/id/1/300/300" alt="avatar" class="img-circle">
  </div>
  <h1>Paritosh Bhatia</h1>
  <h2>Software Engineer, Open Source Enthusiast</h2>
</div>
⚠️ **GitHub.com Fallback** ⚠️