-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
77 lines (77 loc) · 2.21 KB
/
form.html
File metadata and controls
77 lines (77 loc) · 2.21 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="StyleSheet" href="./style.css" />
<title>Form / Imagine 3D</title>
</head>
<body class="container">
<header class="navbar">
<a href="./app.html">
<h1>IMAGINE <span>3</span>D</h1>
</a>
<nav>
<ul>
<li><a href="./app.html">Home</a></li>
<li><a href="./shop.html">Shop</a></li>
<li><a href="#section-contact">Contact</a></li>
</ul>
</nav>
<a href="./shop.html" class="nav-button">Return shop</a>
</header>
<main></main>
<footer id="section-contact">
<div class="footer-section">
<h2>IMAGINE <span>3</span>D</h2>
<ul>
<li><span>Navbar</span></li>
<li><a href="./shop.html">Shop</a></li>
<li><a href="./app.html">Home</a></li>
</ul>
<ul>
<li><span>Contact</span></li>
<li>Buenos Aires</li>
<li>CABA</li>
<li>UADE</li>
<li>Diseño</li>
</ul>
<ul>
<li><span>Team</span></li>
<li>Federico Privitera</li>
<li>Josebeth Amacoria</li>
<li>Juan Pedro Fernandez</li>
<li>Juan Góngora</li>
</ul>
<div class="footer-iconos">
<ul>
<li>
<a
href="https://twitter.com/search?q=impresion%203d&src=typed_query"
target="_blank"
>
<img alt="icon-twitter" src="iconos/ico-x.svg" />
</a>
</li>
<li>
<a
href="https://www.instagram.com/_imagine3d?igsh=YnI5dGM0eWdnbmp0"
target="_blank"
>
<img alt="icon-instagram" src="iconos/ico-insta.svg" />
</a>
</li>
<li>
<a
href="https://github.com/juanfran2000/proyectDesign.git"
target="_blank"
>
<img alt="icon-gitHub" src="iconos/ico-git.svg" />
</a>
</li>
</ul>
</div>
</div>
</footer>
</body>
</html>