-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
116 lines (103 loc) · 4.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!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">
<title>Portfolio</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;700;900&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@200;300;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
nav #hamb-btn{
margin-top: 0.5rem;
font-size: 30px;
line-height: 60px;
cursor:pointer;
}
</style>
</head>
<link rel="stylesheet" href="./css/general.css">
<link rel="stylesheet" href="./css/index.css">
<body class="body">
<div class="nav-container">
<header class="header">
<a href="index.html" class="logo">N.M.<span class="norbert">Norbert</span></a>
<nav>
<ul class="list" id="list">
<ul><a href="index.html" class="list-item">Home</a></ul>
<ul><a href="about.html" class="list-item">About</a></ul>
<ul><a href="skills.html" class="list-item">Skills</a></ul>
<ul><a href="blogs.html" class="list-item">Blogs</a></ul>
<ul><a href="projects.html" class="list-item">Projects</a></ul>
<ul><a href="contacts.html" class="list-item">Contacts</a></ul>
<ul><a href="login.html" class="list-item">Login</a></ul>
</ul>
<button class="hamb-btn" id="hamb-btn"><i class="fa fa-bars"></i></button>
</nav>
</header>
</div>
<div class="home">
<div class="content">
<h1 class="header1">Hello, I am Norbert N. Muhizi</h1>
<h3 class="header3">A Junior Developer and A Creative Designer.</h3>
<p class="home-paragraph">Ardent about Software Development in
providing solutions to real world problems
using software applications.</p>
<button class="resume-button">Resume</button>
</div>
<div class="home-photo">
<img class="photo"src="photos/portfolio photo.jpg" alt="profile">
</div>
</div>
<div class="footer">
<a href="index.html" class="logo-2">N.M.<span class="norbert-2">Norbert</span></a>
<div class="above-line">
<div class="left-side">
<h3>get more digital experiences<br />
that creates more happy in the<br />
world, with me.
</h3>
</div>
<div class="right-side">
<nav>
<ul>
<li><a href="#">overview</a></li>
<li><a href="#">help</a></li>
<li><a href="#">privacy</a></li>
<li><a href="blogs.html">blogs</a></li>
<li><a href="#">Support me</a></li>
</ul>
</nav>
</div>
</div>
<hr size="0.5" width="80%" color="lightgray">
<div class="below-line">
<div class="copyright">
<h3>©2022, All rights reserved</h3>
</div>
<div class="icons">
<ul class="s-icons">
<li>
<a href="#"><img class="facebook-icon" src="social-icons/facebook.svg"></a>
</li>
<li>
<a href="#"><img class="linkedin-icon" src="social-icons/LinkedIn.svg"></a>
</li>
<li>
<a href="#"><img class="twitter-icon" src="social-icons/Twitter.svg"></a>
</li>
<li>
<a href="#"><img class="git-icon" src="social-icons/Github.svg"></a>
</li>
</ul>
</div>
</div>
</div>
<script src="script/menu.js"></script>
</body>
</html>