For the past four days, I've been diving into the world of HTML and CSS to create my own personal webpage. As a beginner, I haven't yet hosted it and am still in the process of crafting it. One thing I attempted was designing a favicon for my site to replace the default "white paper with a fold on the top right."
Check out the code snippet I came up with:
<head>
<title>RAMYA VEMUGANTI</title>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
</head>
<body>
<div id="header">
<h1>Ramya Vemuganti</h1>
<hr/>
</div>
</body>