-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (57 loc) · 2.04 KB
/
index.html
File metadata and controls
63 lines (57 loc) · 2.04 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
<!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="assets/css/style.css">
<title>Document</title>
</head>
<body>
<div class="container"></div>
<section id="home-page">
<div class ="logo">
<a href="index.html"><img src="/assets/images/logo2.png" alt="logo"></a>
<p>By My Ekman</p>
</div>
<hr>
<nav>
<ul id="menu">
<li>
<a href="index.html" class="active">Home</a>
</li>
<li>
<a href="#gallery">Gallery</a>
</li>
<li>
<a href="#About">About</a>
</li>
<li>
<a href="#Contact">Contact</a>
</li>
</ul>
</nav>
<section id="hero-image">
<div class="image-container">
<p>Discover paintings please click here</p>
<div class="text-button">
<a href="#gallery">Discover paintings!</a>
</div>
</div>
</section>
</section>
<footer>
<p>Follow Myrakel Design on social media</p>
<ul class="social-network">
<li>
<a href="https://facebook.com" target="_blank" rel="noopener" aria-label="Visit our Facebook page (opens in a new tab)"><i class="fa-brands fa-facebook"></i></a>
</li>
<li>
<a href="https://instagram.com" target="_blank" rel="noopener" aria-label="Visit our Instagram page (opens in a new tab)"><i class="fa-brands fa-instagram"></i></a>
</li>
</ul>
</footer>
<!-- font awesome script-->
<script src="https://kit.fontawesome.com/f56f5ae272.js" crossorigin="anonymous"></script>
</body>
</html>