-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (63 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<title>Benn Dalton</title>
<link rel="stylesheet" href="/style.css">
</head>
<body style="background-image: url(./images/marvin-meyer-SYTO3xs06fU-unsplash.jpg);">
<div class="back"></div>
<header>
<div class="menu">
<div class="menubar"></div>
</div>
<ul id="head">
<div class="back"></div>
<a href="/index.html" class="active">
<li>Home</li>
</a>
<a href="/portfolio.html">
<li>Portfolio</li>
</a>
<a href="/blogs/">
<li>Blogs</li>
</a>
<a href="/about.html">
<li>About</li>
</a>
<a href="/contact.html">
<li>Contact</li>
</a>
<a href="/signin.html">
<li>Sign in</li>
</a>
</ul>
<script type="module" defer src="/js/munubar.js"></script>
</header>
<main class="index">
<p style="margin: 1rem 0;">HELLO</p>
<h1>
I’m <b>Benn Dalton IRADUKUNDA</b><br />
a <b>Software Developer</b>
</h1>
<p style="color: var(--grey-color);margin: 2rem 0;">
I’m a software developer! I can help you build a product, feature or website Look through some of my work
and experience! If you like what you see and have a project you need coded, don’t hestiate to contact me.
I’m a software developer! I can help you build a product, feature or website Look through some of my work
</p>
<div>
<button class="button but1">Hire Me</button>
<button class="button but2" onclick="linkto('/portfolio.html')">Portfolia</button>
<script>
function linkto(link) {
window.location.assign(link)
}
</script>
</div>
</main>
<footer>
copyright @2022. All right reserved
<br />
Designed by Benn Dalton
</footer>
</body>
</html>