-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
75 lines (67 loc) · 3.13 KB
/
portfolio.html
File metadata and controls
75 lines (67 loc) · 3.13 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio Page</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<div class="logo">Adnan</div>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<div>
<h1>About Me:</h1>
<h2 style="color: yellow;">I am Adnan</h2>
<p>I am year 2 student studying Math & Statistics at the university of Hong Kong Baptist University.</p>
<p><i>"I am, who I am"</i></p>
</div>
<div>
<h3>My Skills</h3>
<p>Here are some of my skills I've built:</p>
<ol class ="list-group list-group-numbered">
<li class="list-group-item">HTML & CSS</li>
<li class="list-group-item">Business Development</li>
<li class="list-group-item">Python</li>
<li class="list-group-item active">Marketing</li>
</ol>
</div>
<div class="info">
<h1>About My Start-Up:</h1>
<p style="font-size:x-large;"> I am building Shit</p>
<p>We have seen students struggle with time management, bad mental health during their university life and some extreme cases lead to suicide as well.</p>
<p>To help students overcome this problem we are building a platform called UniThrive, which is an AI assisted platform for students to support with their mental and physical health as well as their university life.</p>
<p>Our personalised <span class="highlight">AI assistants</span> will help you track your university life for example, your course schedules,competitions, extra curricular activities and other university workloads.</p>
<p>We will be on boarding phycologists and mental health captains from our university as our peer mentors to help students overcome their personal problems.</p>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="https:/cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css">
<div class ="container">
<form>
<div class="row">
<div class="col-sm-4">
<label> Full Name:</label>
<input type ="text" class="form-control" placeholder="Enter your Full Name">
</div>
<label> Email Address:</label>
<div class="col-sm-4">
<input type ="Email" class="form-control" placeholder="Enter your Company Email">
</div>
<label> Message:</label>
<div class="col-sm-4">
<input type ="text" class="form-control" placeholder="Enter your Message">
</div>
</div>
</form>
</div>
</body>
</html>