Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
MatchaMachiato authored Sep 18, 2023
1 parent 5b6aacd commit f9f239c
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions project_1/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<meta charset = "UTF-8">
<meta name = "viewport" content = "width = device-width, initial-scale = 1.0">
<meta http-equiv="X-UA-Compatible" content = "ie=edge">
<title>Document</title>
<head>
<body>
<label for="myCheckBox">subscribe</label>
<input type = "checkbox" id ="myCheckBox"><br>

<label for = "visaBtn">Visa</label>
<input type="radio" name="card" id="visaBtn">
<br>
<label for = "mastercardBtn">Mastercard</label>
<input type="radio" name="card" id="mastercardBtn">
<br>
<label for = "paypalBtn">Paypla</label>
<input type="radio" name="card" id="paypalBtn">
<br>

<button id = "myButton">subscribe</button>
<script src = "index.js"></script>
</body>
</head>
</html>

0 comments on commit f9f239c

Please sign in to comment.