Skip to content

Instantly share code, notes, and snippets.

View muhdibee's full-sized avatar
🎯
Focusing

Muhammad Ibrahim muhdibee

🎯
Focusing
View GitHub Profile
@muhdibee
muhdibee / base.css
Created August 25, 2023 21:43
CSS reset rules for clearing the default styles set by browsers
/* CSS reset rules */
html, body {
height: 100%;
min-height: 100%;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
@muhdibee
muhdibee / states.json
Last active April 26, 2024 07:36
Data for all states in Nigeria. This data is an array of objects that represent states with the following keys: name, capital, region, population, description, no_of_lgas (i.e. number of local government areas), and local_gov_areas (i.e. local government areas). The data type of these keys are; name: String, capital: String, region: String, popu…
[
{
"name": "Abia",
"capital": "Umuahia",
"region": "South East",
"population": 3178950,
"description": "Abia is a state in southeastern Nigeria, known for its commercial and agricultural activities.",
"no_of_lgas": 17,
"local_gov_areas": ["Aba North", "Aba South", "Arochukwu", "Bende", "Ikwuano", "Isiala Ngwa North", "Isiala Ngwa South", "Isuikwuato", "Obi Ngwa", "Ohafia", "Osisioma Ngwa", "Ugwunagbo", "Ukwa East", "Ukwa West", "Umuahia North", "Umuahia South", "Umu Nneochi"]
},