-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (46 loc) · 1.84 KB
/
Copy pathindex.html
File metadata and controls
52 lines (46 loc) · 1.84 KB
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
<!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>JKCSS Example - Pirtfolio</title>
<link rel="stylesheet" href="example.css">
</head>
<body>
<header class="site-header">
<a href="#" class="site-logo">JKCSS</a>
<nav class="nav-bar">
<a href="#">Home</a>
<a href="#">Projects</a>
<a href="#">About</a>
<a href="#">Contact</a>
</nav>
</header>
<section class="home">
<div class="home-content">
<h1>JehanKandy</h1>
<h3>Founder and CEO at JKCSS, Frontend, Backend Web Developer.</h3>
<hr>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ad
voluptatibus nihil officiis quidem natus non eos vitae,
atque recusandae laboriosam dolores iusto culpa harum quia.
Praesentium vero reiciendis esse optio animi aliquid enim at
earum repellat. Inventore perferendis tenetur quae et labore
odio, incidunt explicabo voluptate corporis autem? Eos,
necessitatibus!</p>
<div class="group-buttons">
<a href="">Contact Me</a>
<a href="">More Infor</a>
</div>
<div class="social-content">
<a href="">Facebook</a>
<a href="">LinkedIn</a>
<a href="">GitHub</a>
<a href="">Youtube</a>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>