You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A simple web application that allows users to search for GitHub profiles and view detailed information about users.
4
+
5
+
## Features
6
+
7
+
- Search for GitHub users by username
8
+
- View user profile information including:
9
+
- Profile picture
10
+
- Name and username
11
+
- Bio
12
+
- Followers and following count
13
+
- Number of repositories and gists
14
+
- Location
15
+
- Company
16
+
- Blog/website
17
+
- Twitter handle
18
+
- Account creation date
19
+
- Responsive design that works on mobile and desktop
20
+
- Error handling for non-existent users
21
+
22
+
## Technologies Used
23
+
24
+
- HTML5
25
+
- CSS3 (with Flexbox and Grid layout)
26
+
- JavaScript (ES6+)
27
+
- GitHub REST API
28
+
- Font Awesome for icons
29
+
30
+
## How to Use
31
+
32
+
1. Open the `index.html` file in your browser
33
+
2. Enter a GitHub username in the search box
34
+
3. Click the "Search" button or press Enter
35
+
4. View the user's profile information
36
+
37
+
## API Information
38
+
39
+
This app uses the GitHub REST API to fetch user data. No API key is required for basic usage, but there are rate limits for unauthenticated requests (60 requests per hour).
40
+
41
+
API Endpoint used: `https://api.github.com/users/{username}`
42
+
43
+
## Project Structure
44
+
45
+
-`index.html` - Main HTML structure
46
+
-`style.css` - CSS styling
47
+
-`script.js` - JavaScript functionality and API integration
0 commit comments