-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetails.html
53 lines (39 loc) · 1.32 KB
/
details.html
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/all.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./fonts/themify/themify-icons.css">
<title>Novo Contato</title>
<script src="./scripts/details.js"></script>
</head>
<body>
<div class="container">
<nav>
<i class="ti-menu"></i>
<h1>Contatos</h1>
<i class="ti-search"></i>
<i class="ti-help-alt"></i>
<i class="ti-settings"></i>
</nav>
<header class="header-title">
<a href="index.html"><i class="ti-arrow-left"></i></a>
</header>
<main>
<div>
<div class="image-contact ti-user"></div>
<span>Fulano de Tal</span>
</div>
<fieldset>
<h6>Detalhes do contato</h6>
<span class="ti-email"></span><p>contato@contato</p>
<span class="ti-mobile"></span><p>67 9 9991-9992</p>
<span class="ti-calendar"></span><p>23 de junho de 1986</p>
</fieldset>
</main>
</div>
</body>
</html>