-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
155 lines (154 loc) · 5.14 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Candid Cins</title>
<link rel="stylesheet" href="./styles/style.css">
<link rel="stylesheet" href="./styles/mediaqueries.css">
</head>
<body>
<nav id="desktop-nav">
<div class="logo"> Candid Cins </div>
<div>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<nav id="hamburger-nav">
<div class="logo">Candid Cins</div>
<div class="hamburger-menu">
<div class="hamburger-icon">
<span></span>
<span></span>
<span></span>
</div>
<div class="menu-links">
<li><a href="#about">About</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</div>
</div>
</nav>
<section id="profile">
<div class="section__pic-container">
<img src="./assets/hero-picture.png" alt="profile picture" class="hero-pic">
</div>
<div class="section__text">
<p class="section__text__p1"> Hello, I'm </p>
<h1 class="title "> Devonte Addison</h1>
<p class="section__text__p2"> Multi-Platform Developer </p>
<div class="btn-container">
<button class="btn btn-color-2"> Download CV </button>
<button class="btn btn-color-1"> Contact Info </button>
</div>
<div id="socials-container">
<img src="./assets/linkedin.png" alt="My LinkedIn profile" class="icon">
<img src="./assets/github.png" alt="My Github profile" class="icon">
</div>
</div>
</section>
<section id="about">
<p class="section__text__p1"> A little </p>
<h1 class="title"> About Me </h1>
<div class="section-container">
<div class="section__pic-container">
<img
src="./assets/apostle-club-pic.jpeg"
alt="Profile Picture"
class="about-pic"
/>
</div>
<div class="about-details-container">
<div class="about-containers">
<div class="details-container">
<img
src="./assets/experience.png"
alt="Experience Icon"
class="icon"
/>
<h3> Experience </h3>
<p> 3+ years <br>Mobile & Desktop Development</p>
</div>
<div class="details-container">
<img
src="./assets/education.png"
alt="Education Icon"
class="icon"
/>
<h3> Education </h3>
<p>I am self-taught, working through the books at<br>
<a href="https://teachyourselfcs.com/"> teachyourselfcs.com </a></p>
</div>
</div>
<div class="text-container">
<p>
Hello everyone, I'm an professional audio engineer & software programmer with a focus on Apple Platforms & Window's Desktop of 4 years. Will be updating the site soon to showcase my works in the meantime, best way to get in contact with me is probably instagram or email!
</p>
</div>
</div>
</div>
</section>
<section id="projects">
<p class="section__text__p1"> Browse My Recent </p>
<h1 class="title"> Projects </h1>
<div class="exerience-details-container">
<div class="about-containers">
<div class="details-container color-container">
<div class="article-container">
<img
src="./assets/site-under-construction-design-vector.jpg"
alt="Project 2"
class="project-img"
>
</div>
<h2 class="experience-sub-title project-title"> Coming Soon...</h2>
<div class="btn-container">
<button class="btn btn-color-2 project-btn">Github</button>
</div>
</div>
</div>
</div>
</section>
<section id="contact">
<p class="section__text__p1"> Get in Touch</p>
<h1 class="title"> Contact Me </h1>
<div class="contact-info-upper-container">
<div class="contact-info-container">
<img
src="./assets/email.png"
alt="Email Icon"
class="icon contact-icon email-icon"
>
<p><a href="mailto:[email protected]"> [email protected] </a></p>
</div>
<div class="contact-info-container">
<img
src="./assets/linkedin.png"
alt="LinkedIn Icon"
class="icon contact-icon"
>
<p><a href="https://linkedin.com/in/dj-addison-69826b1b6"> LinkedIn </a></p>
</div>
</div>
</section>
<footer>
<nav>
<div class="nav-links-container">
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<p> Copyright © 2023 CandidCins. All Rights Reserved </p>
</footer>
<script src="index.js"></script>
</body>
</html>