From 226073a8377bbc7f9ab0e15326b453a86db1938a Mon Sep 17 00:00:00 2001 From: Nirzara Ghure <113231114+nirzaraghure@users.noreply.github.com> Date: Thu, 23 Jul 2026 10:02:29 +0530 Subject: [PATCH] Fix merge conflict: resolve index.html from PRs #8 and #9 --- index.html | 84 ++++++++++++++++++++++++++---------------------------- 1 file changed, 40 insertions(+), 44 deletions(-) diff --git a/index.html b/index.html index d7dd480..34ca256 100644 --- a/index.html +++ b/index.html @@ -1,4 +1,3 @@ -```html @@ -16,49 +15,46 @@

GitHub Profile Viewer

- - - - -``` \ No newline at end of file + function renderProfile(profileData) { + const profileDiv = document.getElementById("profile"); + const profileHTML = + "

" + profileData.name + "

" + + "

Username: " + profileData.login + "

" + + '

Profile URL: ' + profileData.html_url + '

' + + "

Email: " + profileData.email + "

" + + "

Bio: " + profileData.bio + "

"; + profileDiv.innerHTML = profileHTML; + } + + +