-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.html
More file actions
152 lines (152 loc) · 4.51 KB
/
app.html
File metadata and controls
152 lines (152 loc) · 4.51 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!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>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="#section-category">Category</a></li>
<li><a href="#section-contact">Contact</a></li>
</ul>
</nav>
<a href="./shop.html" class="nav-button">Explore shop</a>
</header>
<main>
<section class="hero-section">
<hero>
<div>
<h3>Imagine / Create / Design</h3>
<span>
<h2>Bringing your</h2>
<h2 class="text-degrade">
<span>vision to life</span> one pixel at a time.
</h2>
</span>
<p>
Need to take your ideas to the next level? At Imagine 3D, our
experts in creating will help you design customized models,
animations, and visualizations that fit your needs and objectives.
Discover the power of 3D design!
</p>
</div>
</hero>
<aside>
<img src="./imagenes/img-portada.png" alt="imagen portada" />
</aside>
</section>
<section id="section-category" class="sections">
<h2>Check out our designs</h2>
<ul class="cards-category">
<li>
<h5>Category</h5>
<h4>Architecture</h4>
</li>
<li class="card-gris">
<h5>Category</h5>
<h4>Fictures</h4>
<div>
<img
src="./imagenes/img-figures.png"
alt="img-fictures"
width="100"
/>
</div>
</li>
<li>
<h5>Category</h5>
<h4>Decoration</h4>
</li>
<li class="card-gris">
<h5>Category</h5>
<h4>Tools</h4>
</li>
</ul>
</section>
<section id="section-steps" class="sections">
<div class="text-steps">
<h3>Your <span>trusted</span> friend in 3d desing</h3>
<p>
At our 3D design studio, we strive to deliver more than orders, we
deliver trust in every detail, in every model and in every project
we create for our clients.
</p>
</div>
<div class="cards-steps">
<div class="card-step-1">
<h5>01.</h5>
<h4>Choosing the design</h4>
</div>
<div class="card-step-2">
<h5>02.</h5>
<h4>Printing the design</h4>
</div>
<div class="card-step-3">
<h5>03.</h5>
<h4>Delivery of the design</h4>
</div>
</div>
</section>
</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="./form.html">Form</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>