diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..5e14566 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020-2024 Ankush Raj Mahe Yam (ARMY) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..b77d6fb --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +# Temperature-Converter + +This is simple but most reliable Tempreture Convter application to use for interchange temperature parameter in Degree Celsius, Kelvin & Fahrenheit in realtime. This website made using HTML, CSSk & JavaScript. + +## Features +- Convert Real time Temperature Measurment Unit. +- clear button to reset your data. + +## Usage: +1. Clone this repository. +2. Open `index.html` in your web browser. +3. Start managing your address book! + +## License +This project is licensed under the MIT License - see the [LICENSE.md](https://github.com/AnkushRajMaheYam/Temperature-Converter/blob/main/LICENSE.md) file for details. + +## Credits +This website was created by Ankush Raj Mahe Yam (ARMY). All rights reserved. + +[Ankush Raj Mahe Yam (ARMY)](https://github.com/AnkushRajMaheYam) diff --git a/images.jpg b/images.jpg new file mode 100644 index 0000000..e84bef1 Binary files /dev/null and b/images.jpg differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..febbc36 --- /dev/null +++ b/index.html @@ -0,0 +1,79 @@ + + + + +
+
+

Temperature Converter

+ +
+ +
+ + +
+
+ + +
+
+ + +
+ +
+ +
+ +
+ \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..8adf44b --- /dev/null +++ b/style.css @@ -0,0 +1,107 @@ +*{ + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body{ + display: flex; + justify-content: center; + align-items: center; + min-height: 100vh; +} + +.container{ + max-width: 450px; + background: #003333; + border-radius: 8px; + box-shadow: 0px 0px 15px 3px rgba(0,0,0,0.4); + font-family: sans-serif; + padding: 20px; +} + +.title{ + display: flex; + justify-content: center; + align-items: center; + flex-wrap: wrap-reverse; + gap: 10px; +} + +.Temperature-icon{ + font-size: 45px; + color: #fff; +} + +h1{ + color: #fff; + letter-spacing: 1.2px; + font-size: 30px; +} + +#celsius, #fahrenheit, #kelvin{ + display: flex; + justify-content: center; + align-items: center; + margin-top: 25px; +} + +input{ + flex: 5; + height: 60px; + font-size: 20px; + font-weight: 600; + text-align: center; + border: none; + outline: none; + border-radius: 8px 0 0 8px; + padding: 0 10px; +} + + +/* for chrome, safari, Edge, Opera */ +input::-webkit-outer-spin-button, +input::-webkit-inner-spin-button{ + -webkit-appearance: none; +} + +/* for Mozila firefox */ +input{ + -moz-appearance: textfield; +} + + +.icon{ + flex: 1; + height: 60px; + line-height: 60px; + padding: 0 5px; + text-align: center; + font-size: 30px; + background: #4d5964; + color: #fff; + border-radius: 0 8px 8px 0; +} + + +.button{ + margin-top: 25px; + text-align: center; +} + + +.button button{ + border: none; + outline: none; + padding: 10px 30px; + font-size: 20px; + font-weight: 600; + border-radius: 3px; + cursor: pointer; + transition: 0.3s; +} + +.button button:hover{ + background: #000; + color: #fff; +} \ No newline at end of file