forked from rocketacademy/portfolio-page-bootcamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (88 loc) · 2.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link href="styles.css" rel="stylesheet" />
<title>Qian's Portfolio</title>
</head>
<body>
<section class="header-section">
<div class="header">
<p id="author-name">Yap Qianling</p>
<div class="header-navigation">
<a href="#home">Home</a>
<a href="#projects">Projects</a>
<a href="#skills">Skills</a>
<a href="#contact">Contact</a>
</div>
<div>
<button class="hire-button">Contact Me ></button>
</div>
</div>
</section>
<section id="home" class="home-section">
<div class="about">
<p class="title">
Hey there, I'm Qianling! <br />An aspiring Software Engineer.
</p>
<p>
Based in Singapore, I am passionate about creating a product from
scratch, and bringing it to life.
</p>
<div>
<button class="say-hello-button">Let's Start ></button>
</div>
</div>
</section>
<hr />
<section id="projects" class="projects-section">
<h1>Featured Works</h1>
<div class="project-container">
<p class="project-title">Front-end</p>
<p class="project-title">Full-Stack</p>
<p class="project-title">Back-end</p>
<p class="project-title">Capstone</p>
</div>
<div class="image-container">
<div><img src="launching.png" alt="launching-soon-logo" /></div>
<div><img src="launching.png" alt="launching-soon-logo" /></div>
<div><img src="launching.png" alt="launching-soon-logo" /></div>
<div><img src="launching.png" alt="launching-soon-logo" /></div>
</div>
<div class="button-container">
<div class="project-button">
<button onclick="alert('Launching soon!')">Explore</button>
</div>
<div class="project-button">
<button onclick="alert('Launching soon!')">Explore</button>
</div>
<div class="project-button">
<button onclick="alert('Launching soon!')">Explore</button>
</div>
<div class="project-button">
<button onclick="alert('Launching soon!')">Explore</button>
</div>
</div>
</section>
<hr />
<section id="skills" class="skills-section">
<h1>Skills</h1>
<ul>
<li>Javascript</li>
<li>CSS</li>
<li>HTML</li>
</ul>
</section>
<hr />
</body>
<footer id="contact" class="contact-section">
<h2 class="footer-header">Contact</h2>
<div class="contact">
<a href="https://github.com"><img src = "github.png" alt="github-logo"></a>
<a href="https://www.linkedin.com" target="blank"><img src = "linkedin.png" alt="linkedin-logo"></a>
</div>
<p class="footer-message">A platform where designers, product managers and engineers collaborate
</p>
</footer>
</body>
</html>