diff --git a/Existing_API_Collection/Universities_Worldwide_API/README.md b/Existing_API_Collection/Universities_Worldwide_API/README.md deleted file mode 100644 index 0a2fbcee..00000000 --- a/Existing_API_Collection/Universities_Worldwide_API/README.md +++ /dev/null @@ -1,40 +0,0 @@ -# University Search Web App - -This is a web application that allows users to search for universities in a specified country using the Hipolabs University API. - -## Features - -- Input a country name to search for universities. -- Display a list of universities with their names, countries, and websites. - -## Technologies Used - -- HTML -- CSS -- JavaScript - -## Usage - -1. Open the `index.html` file in your web browser. -2. Enter the name of a country in the input box. -3. Click the "Search" button to fetch and display the list of universities in the specified country. - -## Code Explanation - -- HTML: Provides the structure of the web page. -- CSS: Styles the elements for a better visual presentation. -- JavaScript: Fetches data from the Hipolabs University API and dynamically updates the content on the web page. - -## API Integration - -This web app integrates with the Hipolabs University API to fetch a list of universities in a specified country. - -- API URL: `http://universities.hipolabs.com/search?country=CountryName` - -## Credits - -- [Hipolabs University API](http://universities.hipolabs.com/) - -## License - -This project is licensed under the MIT License - see the LICENSE file for details. diff --git a/Existing_API_Collection/Universities_Worldwide_API/index.html b/Existing_API_Collection/Universities_Worldwide_API/index.html deleted file mode 100644 index f5b34b34..00000000 --- a/Existing_API_Collection/Universities_Worldwide_API/index.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - Search Universities - - - -
-

Search Universities

-
- - -
-
- - - diff --git a/Existing_API_Collection/Universities_Worldwide_API/styles.css b/Existing_API_Collection/Universities_Worldwide_API/styles.css deleted file mode 100644 index 47b5fff4..00000000 --- a/Existing_API_Collection/Universities_Worldwide_API/styles.css +++ /dev/null @@ -1,114 +0,0 @@ -body { - font-family: Arial, sans-serif; - background-color: #f4f4f4; - margin: 0; - padding: 0; -} - -.container { - max-width: 800px; - margin: 50px auto; - background-color: #fff; - padding: 20px; - border-radius: 8px; - box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); -} - -h1 { - text-align: center; - color: #333; -} - -.input-group { - display: flex; - justify-content: center; - margin-bottom: 20px; -} - -input[type="text"] { - padding: 10px; - font-size: 16px; - border: 1px solid #ccc; - border-radius: 4px; - flex: 1; -} - -button { - padding: 10px 20px; - font-size: 16px; - border: none; - background-color: #28a745; - color: #fff; - cursor: pointer; - border-radius: 4px; - margin-left: 10px; -} - -button:hover { - background-color: #218838; -} - -.loader { - border: 6px solid #f3f3f3; - border-radius: 50%; - border-top: 6px solid #3498db; - width: 40px; - height: 40px; - animation: spin 2s linear infinite; - margin: 20px auto; - display: none; -} - -@keyframes spin { - 0% { transform: rotate(0deg); } - 100% { transform: rotate(360deg); } -} - -#error-message { - color: red; - text-align: center; - margin-top: 10px; -} - -#universities-list { - display: flex; - flex-wrap: wrap; - gap: 10px; - justify-content: center; -} - -.card { - padding: 15px; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); - width: 45%; - box-sizing: border-box; -} - -.card:nth-child(even) { - background-color: #f9f9f9; -} - -.card-title { - font-size: 18px; - font-weight: bold; - margin: 0 0 10px 0; -} - -.card-content { - font-size: 14px; - margin: 5px 0; -} - -.card-link { - font-size: 14px; - color: #3498db; - text-decoration: none; - word-wrap: break-word; -} - -.card-link:hover { - text-decoration: underline; -} diff --git a/Existing_API_Collection/Universities_Worldwide_API/universities.html b/Existing_API_Collection/Universities_Worldwide_API/universities.html deleted file mode 100644 index 3af2187e..00000000 --- a/Existing_API_Collection/Universities_Worldwide_API/universities.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - Universities List - - - -
-

Universities List

- - -
-
- - -