-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (89 loc) · 2.61 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay"
crossorigin="anonymous"
/>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>
<nav id="navbar" class="nav">
<ul id="nav-link">
<li class="navlist"> <a href="#welcome-section">About</a></li>
<li class="navlist"><a href="#projects">Works</a></li>
<li class="navlist"><a href="#contact">Contact</a></li>
</ul>
</nav>
<section id="welcome-section" class="welcome-section">
<h1 id="header"><span style="color: rgb(235, 93, 143);">Hey, are you looking</span> </span> <span style="color: #FFF;"> for a web developer?</span></h1>
<p>...nice to meet you.</p>
</section>
<section id="projects" class="projects">
<h2 class="project-section-header">Do you like what you see?</h2>
<div class="project-table">
<a href="#">
<img src="../project5/prg1.png" class="project-image">
<p class="project-title">
Data form
</p>
</a>
<a href="#">
<img src="../project5/prg2.png" class="project-image">
<p class="project-title">
Start up
</p>
</a>
<a href="https://codepen.io/zihco/pen/jOaQjXe" target="_blank">
<img src="../project5/prg3.png" class="project-image">
<p class="project-title">
Documentation page
</p>
</a>
</div>
</section>
<section id="contact" class="contact">
<div>
<h2>
Hit my DM -
</h2>
<p>Lets do it again...</p>
</div>
<div class="contact-format">
<a
href="https://facebook.com/jamesmatics"
target="_blank"
class="btn contact-details"
><i class="fab fa-facebook-square"></i> Facebook</a
>
<a
id="profile-link"
href="https://github.com/ZIHCO"
target="_blank"
class="btn contact-details"
><i class="fab fa-github"></i> GitHub</a
>
<a
href="https://twitter.com/ChZb8"
target="_blank"
class="btn contact-details"
><i class="fab fa-twitter"></i> Twitter</a
>
<a href="mailto:[email protected]" class="btn contact-details"
><i class="fas fa-at"></i> Send a mail</a
>
<a href="tel:555-555-5555" class="btn contact-details"
><i class="fas fa-mobile-alt"></i> Call me</a
>
</div>
</section>
<footer>
© ZIHCO 2022
</footer>
</body>
</html>