Web Snippet

Basic HTML Portfolio

This is a simple portfolio webpage created using only inline CSS.

<!DOCTYPE html>
<html>
<body style="font-family:Arial; background:#f0f0f0; text-align:center;">
<div style="width:300px; margin:50px auto; padding:20px; background:white; border:1px solid black;">
<h1 style="color:blue;">Portfolio</h1>
<h2 style="color:green;">Raj</h2>
<p><b>Qualification:</b> B.E</p>
<p>I am a beginner web developer.</p>
<p>I like coding and learning HTML.</p>
</div>
</body>
</html>

A simple portfolio page with Name, Qualification.