forked from cmsc389T-fall2023/cmsc389T-web-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (95 loc) · 4.04 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
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/styles.css">
<script src="js/scripts.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<header>
<nav class="same-line">
<div class="topnav left">
<h3><a href="#home">Asma Ilyas </a></h3>
</div>
<div class="topnav right">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#project">Projects</a>
<!-- <a href="#about">About</a> -->
</div>
</nav>
</header>
<body>
<section id="home">
<div class="same-line-panel">
<img id="image" src="assets/profilePicture.JPG" width = "300" height = "300">
<div class="center">
<h1>Asma Ilyas <br></h1>
<h2>Undergraduate Student <br> </h2>
<h3>Major: Computer Science <br>
Minors: Technology Entrepreneurship and Religious Studies </h3>
</div>
</div>
</section>
<section id="about">
<div class="container">
<h1 class="section-header">About Me</h1>
</div>
<div class="same-line-panel reveal">
<img id="logo" src=logo.png>
<div class="panel">
<p>
<h4>My name is Asma, and I am originally from Pakistan.<br>
I moved to the United States in 2016 with my family.<br>
I am a senior undergraduate student here at UMD.</h4>
</p>
</div>
</div>
</section>
<section id="project">
<div class="container">
<h1 class="section-header">Projects</h1>
<div class="row">
<div class="column reveal" style="background-color:#A4969B;">
<h3>How's the Food Safety in Montgomery County?</h3>
<p>Analyzed the inspections for Montgomery County's Food businesses.
Please see a Notebook <a href="https://ailyas13.github.io/CMSC320-Final-Project/FoodInspection.html">Here.</a>
</p>
</div>
<div class="column reveal" style="background-color:#BFB5B9;">
<h3>Machine Learning Classifer on Diabetes Dataset</h3>
<font size="2.5"> <p> 1. Preprocessing the dataset<br>
2. Splitting the data into training and testing sets<br>
3. Training & Testing Models<br>
4. Results (Accuracy, AUC, False Positive & Negative Rates)</p>
Find the Report and Notebook about Diabetes at: <br>
<a href="assets/ReportOnDiabetes.doc">Report</a><br>
<a href="https://colab.research.google.com/drive/1g8n320QHhomxojd9jl3-Ca5F6RFc7tOz#scrollTo=_RUsXDr4moIj">Notebook</a></font>
</p>
</div>
<div class="column reveal" style="background-color:#D1CACD;">
<h3>PacMan Game</h3>
<p>It was a group project where we implemented the PacMan game collaboratively using GitHub.<br>
GitHub page found at this <a href=https://github.com/cmsc389T-fall2023/Team1>link.</a>
</p>
</div>
</div>
</div>
</section>
</body>
<footer>
<div class="leftFooter">
<a href="https://www.cs.umd.edu/" target="_blank" >
<img src="assets/umd_logo.png" height="35" width="80"></a>
</div>
<div class="rightFooter">
<a href="https://github.com/ailyas13" target="_blank">
<img src="assets/github.png" height="50" width="50"></a>
</div>
<div class="rightFooter">
<a href="https://www.linkedin.com/in/asma-wafa-ilyas-b4192b192/" target="_blank">
<img src="assets/linkedin.png" height="50" width="50"></a>
</div>
</footer>
</html>