Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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">
<title>Document</title>
<link rel="stylesheet" href="style.css" media="screen" title="no title">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">

</head>

<body>

<header>
<h1>CV FACTORY</h1>
</header>

<section>
<div class="add">
<input type="text" name="addInput" value="">
<button type="button" name="Add"><i class="fa fa-plus-circle" aria-hidden="true"></i>
</button>
</div>
<div class="list">
<ul>
<li><button type="button" name="remove"><i class="fa fa-ban" aria-hidden="true"></i>
</button> CSS</li>
<li><button type="button" name="remove"><i class="fa fa-ban" aria-hidden="true"></i>
</button> JavaScript</li>
<li><button type="button" name="remove"><i class="fa fa-ban" aria-hidden="true"></i>
</button> HTML5</li>
</ul>
</div>
</section>
</body>

</html>
26 changes: 26 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
body{
font-family: 'Roboto', sans-serif;
background: #191818;
color:#ffffff;
}
section{
display: flex;
justify-content: space-between;
}
ul li{
list-style-type: none;
}

h1{
text-align: center;
}

i{
color: #ffffff;
font-size:2em;
}

button{
background: none;
border: none;
}