-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
64 lines (57 loc) · 2.04 KB
/
home.html
File metadata and controls
64 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
64
<!DOCTYPE HTML>
<html lang = "en">
<head>
<meta charset = "UTF-8" />
<title>Home</title>
<meta name="description" content="Home">
<meta name="author" content="Dinali">
<link rel="stylesheet" href="external.css">
</head>
<body class="bodyhome">
<!--NAVIGATION BAR -->
<nav class="navbar">
<img src="https://svgshare.com/i/Q22.svg" class="navbarLogo" alt=""/>
<ul class="navbarLinks">
<li><a href="home.html">Home</a></li>
<li><a href="AboutUs.html">About</a></li>
<li><a href="Blog.html">Blog</a></li>
<li><a href="Newsletter.html">Newsletter</a></li>
</ul>
<section class="navbarHam"></section>
</nav>
<!--HOME CONTAINER-->
<article class="homecontainer">
<img src="IMAGES/main.jpg" alt="" style="width:100%; height: 80%;">
<section class="homecentered">HI I'M DINALI ;)<br>I design and build user interfaces.
<!--SOCIAL MEDIA LINKS-->
<div class="socialMedia-wrapper">
<ul>
<li><a href="#" target="_blank">
<img src="IMAGES/twitter-2.png" alt="Twitter Logo" class="twitter-icon"></a>
</li>
<li>
<a href="#" target="_blank">
<img src="IMAGES/linkedin-2.png" alt="Linkedin Logo" class="linkedin-icon"></a>
</li>
<li>
<a href="#" target="_blank">
<img src="IMAGES/fb-2.png" alt="Facebook Logo" class="facebook-icon"></a>
</li>
<li>
<a href="#" target="_blank">
<img src="IMAGES/tumblr-2.png" alt="Tumblr Logo" class="tumblr-icon"></a>
</li>
</ul>
</div>
</section>
</article>
<!-- FOOTER -->
<footer class="footer">
<a target="_blank" rel="" href='https://tomasz-gajda.netlify.app/' ></a>
<img class="logo" src='https://svgshare.com/i/Q22.svg' title='logo' alt="" />
<article class="footerRights">
<b>Written and coded by Dinali © 2020 All Rights Reserved</b>
</article>
</footer>
</body>
</html>