-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (48 loc) · 2.1 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
<!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="icon" href="Favicon.ico">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="main/header/header.css">
</head>
<body>
<div class="header">
<header id="header">
<a href="index.html" class="logo">
<img src="../../sources/LOGO/logo.png" alt="logo" width="35px" class="logo-image">
</a>
<nav class="nav-bar" >
<a href="index.html" class="link">Home</a>
<a href="main/about/about.html" class="link">About</a>
<a href="main/skills/skills.html" class="link">Skills</a>
<a href="main/services/services.html" class="link">Services</a>
<a href="main/portfolio/portfolio.html" class="link">Portfolio</a>
<a href="main/contact/contact.html" class="link">Contact</a>
</header>
</div>
<div class="container">
<main>
<div class="main">
<div class="text">
<div class="intro">Hi, I'm Nick</div>
<aside>
<p class="job">Software Engineer</p>
<p class="quick-bio">Computer science undergraduate,
passionate about software development and
Web-Dev, producing quality work.</p>
</aside>
<button type="button" class="btn">Contact Me</button>
</div>
<img src="https://images.unsplash.com/photo-1579403124614-197f69d8187b?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=928&q=80" alt="just a pc" class="pic">
</div>
</main>
</div>
<footer>
<p class="footer">Copyright 2022-2023 ACM WebDev ©</p>
</footer>
</body>
</html>