forked from EmishaCommunity/Demo-Portfolio-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (65 loc) · 2.88 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
<!DOCTYPE html>
<html lang="en" >
<head> <!-- The <head> element is a container for all the head elements.
The <head> element can include a title for the document, scripts, styles, meta information, and more. -->
<meta charset="UTF-8">
<title>Demo Portfolio</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav>
<ul id='navbar'>
<li><a href="#welcome-section">About</a></li>
<li><a href="#projects">Work</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<div id="welcome-section" class="intro">
<h1>Hey, I'm Emisha</h1>
<p>A web developer</p>
</div>
<div id="projects" class="work">
<h2 class="work-header">These are some of my projects..</h2>
<a href="" class="project project-tile">
<img class="project-pic" src="images/projectbg1.png" alt="project">
<div class="project-title">Demo Project 1</div>
</a>
<a href="" class="project project-tile">
<img class="project-pic" src="images/projectbg2.png" alt="project">
<div class="project-title">Demo Project 2</div>
</a>
<a href="" class="project project-tile">
<img class="project-pic" src="images/projectbg3.png" alt="project">
<div class="project-title">Demo Project 3</div>
</a>
<a href="" target="_blank" class="project project-tile">
<img class="project-pic" src="images/projectbg4.png" alt="project">
<div class="project-title">Demo Project 4</div>
</a>
<a href="" target="_blank" class="project project-tile">
<img class="project-pic" src="images/projectbg5.png" alt="project">
<div class="project-title">Demo Project 5</div>
</a>
<a href="" class="project project-tile">
<img class="project-pic" src="images/projectbg6.png" alt="project">
<div class="project-title">Demo Project 6</div>
</a>
<a href="" class="show-all" target="_blank">Show all</a>
</div>
<div id="contact" class="contact">
<div class="header">
<h1>Let's work together...</h1>
<p>How do you take your coffee?</p>
</div>
<a href="" target="_blank" class="contact-details">Facebook</a>
<a id='profile-link' href="" target="_blank" class="contact-details">GitHub</a>
<a href="" target="_blank" class="contact-details">Twitter</a>
<a href="mailto:" class="contact-details">Send a mail</a>
<a href="tel:" class="contact-details">Call me</a>
</div>
<footer>This is just a demo portfolio..
<p>© Created by <a href="https://getemisha.tech/" target="_blank">Emisha</a></p>
</footer>
</body>
</html>