-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·33 lines (27 loc) · 854 Bytes
/
index.html
File metadata and controls
executable file
·33 lines (27 loc) · 854 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Responsivo</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div class="all">
<section class="left">
<h1>Easy Shopping Via Mobile</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing
elit. Donec lorem justo, sollicitudin vel ultricies sed,
eleifend nec metus. Etiam vitae pellentesque dolor.</p>
<button>Get Started</button>
</section>
<header class="right">
<a>Home</a>
<a>Work</a>
<a>About</a>
<a>Contact</a>
</header>
<img class="image" src="./assets/Illustration-3-3.png">
</div>
</body>
</html>