-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (62 loc) · 2.38 KB
/
index.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
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
<!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/index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Atalho</title>
<style>
.disabled{
pointer-events: none;
}
</style>
</head>
<body>
<div id="cabecalho">
<h1>Atalho</h1>
<header id="menu">
<a href="" class="ativo">Home</a>
<a href="./works.html">Works</a>
<a href="./about.html">About</a>
<a href="./contact.html">Contact</a>
<!--<a href="" class="disabled">PT</a>-->
<i id="close_menu" class="fa-solid fa-xmark"></i>
</header><img id="open_menu" src="./images/icons8-menu.svg" alt="menu">
</div>
<!-- some intro words -->
<section id="intro">
<div><img src="./images/juicy-girl-working-at-home.gif" alt="working"></div>
<div class="citacoes_principais">
<p>Let's think outside the <span class="lastword"> box.</span>
</p>
<p>Let's make an impact together. <br> Avaible for opportunities, we can schedule a chat.</p>
</div>
</section>
<!-- See some of our ptojects -->
<section id="seeprojects">
<p>would you like to see some great projects ?
</p>
<p>Take a look at some of ours!</p>
<a href="./works.html">See projects</a>
</section>
<!--Contact us-->
<section id="contactus">
<div><img src="./images/sammy-service-support.gif" alt="working"></div>
<div>
<p>We can help you <br> bring your idea to <span class="lastword"> life.</span></p>
<p>It only takes a few clicks and we are together</p>
<a href="./contact.html">Get in touch</a>
</div>
</section>
<!-- footer -->
<footer>
<address>São Tomé, São Tomé e Principe | ©2020 Atalho </address>
</footer>
<script src="./menu_js/menu.js"></script>
<script src="./js/lang/lang.js"></script>
</body>
</html>