-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
43 lines (41 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Katamoro</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="stylesheet" href="css/main-style.css">
</head>
<body>
<section class="intro">
<div class="container">
<!-- logo and menu -->
<header class="header">
<span class="header__logo">Katamoro</span>
<ul class="header__menu">
<li><a href="#" class="active">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="#">Contact</a></li>
</ul>
</header>
<!-- headline and button -->
<div class="headline__wrapper">
<h1 class="headline"> Explore a new world</h1>
<p class="text">Add your best content here! Make your site stand out above the rest by taking advantage of smooth transition effects and an elegant design.</p>
<a href="https://github.com/JaroslavBeno/learn2codeWebApp" class="btn btn--red pulse">Add more content</a>
</div>
<!-- social media icon -->
<div class="footer">
<ul class="social">
<li><a href="#"><i class="fab fa-github fa-2x"></i></a></li>
<li><a href="#"><i class="fab fa-bitbucket fa-2x"></i></a></li>
<li><a href="#"><i class="fab fa-facebook-f fa-2x"></i></a></li>
<li><a href="#"><i class="fab fa-twitter fa-2x"></i></a></li>
</ul>
</div>
</div>
</section>
</body>
</html>