Skip to content

Commit

Permalink
init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jalmx committed Aug 10, 2018
0 parents commit 146ad7d
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
40 changes: 40 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="App for calculate ohm's law ">
<title>Ohm law X</title>
<link rel="stylesheet" href="styles/style.css">
</head>

<body>
<header id="header" class="header">
<h1 class="header__title-app">Ohm Law X</h1>
</header>
<div class="opcions" id="opcions">
<h2 id="title_question">What do you want calculate?</h2>
<ul>
<li>
<input type="radio" id="check">
<label for="" class="opcion_check">Voltaje
</label>
</li>
<li>
<input type="radio" id="check">
<label for="" class="opcion_check">Current
</label>
</li>
<li>
<input type="radio" id="check">
<label for="" class="opcion_check">Resistance
</label>
</li>
</ul>
</div>

</body>

</html>
Empty file added js/main.js
Empty file.
9 changes: 9 additions & 0 deletions styles/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root,
*,
html,body,
*::after,
*::before{
margin: 0;
padding: 0;
box-sizing: border-box;
}

0 comments on commit 146ad7d

Please sign in to comment.