Skip to content

Commit

Permalink
Merge pull request #2 from holgermanzke/fix-parcel
Browse files Browse the repository at this point in the history
fix parcel issue
  • Loading branch information
holgermanzke committed Nov 6, 2019
2 parents 3c4b611 + 69e266e commit a59b9e0
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 7 deletions.
18 changes: 15 additions & 3 deletions dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,23 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Calculator</title>
<style>input[name="second"] {
background: lightpink;
}
input[name="first"] {
background: lightgreen;
}
.submit {
background: lightblue;
}</style>
</head>
<body>
<input type="text" name="first" placeholder="Enter first number">
<input type="text" name="second" placeholder="Enter second number">
<input type="text" name="first" placeholder="Enter first number" value="22">
<input type="text" name="second" placeholder="Enter second number" value="117">
<button class="submit">submit</button>
<!-- <script src="./index.js"></script> -->
<!-- <script>
alert("another alert");
</script> -->
<script src="/src.e31bb0bc.js"></script>
</body>
</html>
21 changes: 17 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a59b9e0

Please sign in to comment.