-
Notifications
You must be signed in to change notification settings - Fork 8
Example Homepage Setup
Paritosh Bhatia edited this page May 10, 2019
·
1 revision
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>