-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (93 loc) · 3.15 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
<!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>Coding Recruiter</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=Quicksand:wght@300&family=Raleway:wght@200&family=Righteous&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
<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=Chivo+Mono:wght@200;300&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/89deb21c3e.js" crossorigin="anonymous"></script>
</head>
<body>
<header id="main-header">
<a href="index.html" id="logo">AuraCode</a>
<nav>
<ul>
<li>
<a href="">Experience</a>
</li>
<li>
<a href="">Projects</a>
</li>
</ul>
</nav>
<a href="#side-drawer" class="menu-btn">
<span></span>
<span></span>
<span></span>
</a>
</header>
<aside id="side-drawer">
<header>
<a href="#" class="menu-btn">
<span></span>
<span></span>
<span></span>
</a>
</header>
<nav>
<ul>
<li>
<a href="">About</a>
</li>
<li>
<a href="">Projects</a>
</li>
</ul>
</nav>
</aside>
<main>
<section>
<div class="" id="socials">
<ul>
</ul>
</div>
<div class="" id="copyrt">
<P>Lots of <i class="fa-solid fa-mug-hot"></i></P>
<p>A coder at night, Recruiter by Dawn!</p>
</div>
</section>
<section id="latest-career">
<ul>
<li class="career-item">
<article>
<img src="images/software_engineering.png" alt="hacker_looks">
<div class="career-item-content">
<a href="" class="btn"> <p>Software Dev →</p> </a>
</div>
</article>
</li>
<li class="career-item">
<article>
<img src="images/Technical_recruiting.png" alt="collaborat">
<div class="career-item-content">
<a href="" class="btn"> <p>Technical Recruitment →</p> </a>
</div>
</article>
</li>
</ul>
</section>
</main>
<footer>
<nav id="bottom-nav">
<p>Copyright © 2022 Auracode </p>
</nav>
</footer>
</body>
</html>