-
Notifications
You must be signed in to change notification settings - Fork 0
/
apps.html
160 lines (153 loc) · 5.51 KB
/
apps.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!-- @format: Prettier-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Portfolio MAB, Ph.D.</title>
<link rel="icon" type="image/png" href="Images/tree.png" />
<meta charset="UTF-8" />
<meta name="author" content="Mónica Angulo B. Ph.D." />
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1, " />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="About" content="Personal description" />
<link rel="stylesheet" href="Styles/style.css" />
<link rel="stylesheet" href="Styles/contents.css" />
<link rel="stylesheet" href="Styles/responsive.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" />
</head>
<body>
<header>
<div class="nav-mobile">
<h1 class="head-block">Apps</h1>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
</header>
<!-- left menu -->
<div class="menu">
<!-- left Navigation -->
<nav role="navigation">
<!-- left Menu / Logo-->
<aside class="top-nav">
<!-- Logo image-->
<a class="logo" href="index.html"
><img
src="Images/logoPurple.png"
alt="Home page logo. Yellow tree icon"
/></a>
</aside>
<!-- left-bottom contents -->
<div class="bottom-nav">
<ul class="nav-list">
<li>
<a class="nav-link" href="index.html">Home</a>
</li>
<li>
<a class="nav-link" href="career.html">Career</a>
</li>
<li>
<a class="nav-link" href="publications.html"
>Publications</a
>
</li>
<li>
<a class="nav-link" href="education.html">Education</a>
</li>
<li>
<a class="nav-link" href="skills.html">Skills</a>
</li>
<li>
<a class="nav-link" href="about.html">About</a>
</li>
</ul>
</div>
</nav>
</div>
<!-- Contents -->
<main class="contents">
<div class="apps-flex">
<section>
<h2>Easy</h2>
<div class="apps-list">
<div>
<h3>Baseball game</h3>
<a href="https://scratch.mit.edu/projects/948559541/" target="_blank"
><img
src="./Images/apps/scratch-baseball.PNG"
alt="Baseball game cartoon"
/></a>
<h4>
<a
href="https://scratch.mit.edu/projects/948559541/editor/"
target="_blank"
>Project description</a
>
</h4>
</div>
<div>
<h3>Weather app</h3>
<a href="./appPages/weather/weather.html" target="_blank"
><img
src="./Images/apps/weather.png"
alt="Weather app home page"
/></a>
<h4>
<a
href="./appPages/weather/weather.html"
target="_blank"
>Project description</a
>
</h4>
</div>
</div>
</section>
<section>
<h2>Intermediate</h2>
<div class="apps-list">
<div>
<h3>Rock Paper Scissors...</h3>
<a
href="./appPages/rock-paper/rock-paper-scissors.html"
target="_blank"
><img src="./Images/apps/rock-paper.png" alt=""
/></a>
<h4>
<a
href="./appPages/rock-paper/rock-paper-scissors.html"
target="_blank"
>Project description</a
>
</h4>
</div>
</div>
</section>
<section>
<h2>Hard</h2>
<div class="apps-list">
<div>
<h3>E-Commerce</h3>
<a href="./appPages/ecommerce/ecommerce.html"
><img src="./Images/apps/ecommerce.png" alt=""
/></a>
<h4>
<a
href="./appPages/ecommerce/ecommerce.html"
target="_blank"
>Product description</a
>
</h4>
</div>
</div>
</section>
</div>
</main>
<footer class="contents-footer">
<p>© Mónica Angulo. All rights reserved</p>
</footer>
</body>
<script src="Scripts/responsive.js"></script>
</html>