-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselection.html
48 lines (44 loc) · 1.67 KB
/
selection.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Selection</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<h1>Select an Option</h1>
</header>
<main>
<div class="button-container">
<p>Connect with :</p>
<button style="font-size:24px" onclick="connectLinkedIn()"> <i class="fa fa-linkedin-square"></i></button>
<button style="font-size:24px" onclick="connectGitHub()"> <i class="fa fa-github"></i></button>
</div>
<button onclick="goToResumeBuilder()">Normal Resume Builder</button>
<div class="previous_works">
<button onclick="goToPreviousWorks()">Previous Works</button>
</div>
</main>
</div>
<script>
function connectLinkedIn() {
// Add functionality to connect with LinkedIn
alert('Connecting with LinkedIn (Functionality to be added)');
}
function connectGitHub() {
// Add functionality to connect with GitHub
alert('Connecting with GitHub (Functionality to be added)');
}
function goToResumeBuilder() {
window.location.href = 'resume_builder.html';
}
function goToPreviousWorks() {
window.location.href = 'previous_works.html';
}
</script>
</body>
</html>