You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "UTF-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< title > SOLAR SYSTEM< / title >
< link rel = "stylesheet" href = "style.css" >
< / head >
< body >
< h3 > Calculate a weight of an object on a planet< / h3 >
< div >
< form >
< input id = "input-value" type = "number" name = "input-value" placeholder = "Your Weight" >
< select name = "planet" id = "planetName" >
< option value = "mercury" > mercury< / option >
< option value = "venus" > venus< / option >
< option value = "earth" > earth< / option >
< option value = "jupiter" > jupiter< / option >
< option value = "mars" > mars< / option >
< option value = "saturn" > saturn< / option >
< option value = "uranus" > uranus< / option >
< option value = "saturn" > saturn< / option >
< option value = "neptune" > neptune< / option >
< / select >
< input id = "button" type = "button" value = "calculate" >
< / form >
< / div >
< div id = "wrapper" >
<!-- <img src="./images/earth.png" alt=""> -->
<!-- <p id ="demo" >merhaba ben bir uyarı kutusuyum</p> -->
< / div >
< script src = "app.js" > < / script >
< / body >
< / html >