forked from simplonco/js-basic-skillList
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (29 loc) · 1.09 KB
/
index.html
File metadata and controls
36 lines (29 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CV Factory</title>
<link rel="stylesheet" href="CVFactory.css">
<link href="https://fonts.googleapis.com/css?family=Cinzel" 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">
<button type="button" name="add">Confirm</button>
</div>
<div class="list">
<ul>
<li> <button type="button" name="remove"><i class="fa fa-trash" aria-hidden="true"></i></button> Css </li>
<li> <button type="button" name="remove"><i class="fa fa-times" aria-hidden="true"></i>
</button> JavaScript </li>
<li> <button type="button" name="remove"></button> Html5 </li>
</ul>
</div>
</section>
</body>
</html>