-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio-calculator.html
86 lines (76 loc) · 4.89 KB
/
portfolio-calculator.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alec Morris Porfolio Website</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css"
integrity="sha256-46qynGAkLSFpVbEBog43gvNhfrOj+BmwXdxFgVK/Kvc=" crossorigin="anonymous" />
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:400,900|Source+Sans+Pro:300,900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">
<img src="img/logo.jpeg" alt="">
</div>
<button class="nav-toggle" aria-label="toggle navigation">
<span class="hamburger"></span>
</button>
<nav class="nav">
<ul class="nav__list">
<li class="nav__item"><a href="index.html" class="nav__link">Home</a></li>
<li class="nav__item"><a href="index.html#services" class="nav__link">My Services</a></li>
<li class="nav__item"><a href="index.html#about" class="nav__link">About me</a></li>
<li class="nav__item"><a href="index.html#work" class="nav__link">Projects</a></li>
</ul>
</nav>
</header>
<!-- Introduction -->
<section class="intro">
<h1 class="section__title section__title--intro">
Interactive<strong>Calculator Application</strong>
</h1>
<p class="section__subtitle section__subtitle--intro">HTML, CSS, JavaScript</p>
<img src="img/portfolio-01.png" class="intro__img" alt="Calculator Website">
</section>
<div class="portfolio-item-individual">
<p>I am thrilled to showcase my first project—a dynamic and user-friendly calculator application built using JavaScript, HTML, and CSS. This interactive calculator is designed to provide users with a seamless and intuitive experience for performing basic arithmetic operations. Can be found <a href="https://alecmarkmorris.github.io/Calculator/" target="_blank">here</a></p>
<img src="img/calculatorPics.jpeg" alt="">
<p><strong>Key Features:</strong></p>
<p>User-Friendly Interface: The calculator boasts a clean and user-friendly interface, making it easy for users of all levels to perform calculations effortlessly.</p>
<p>Responsive Design: Utilizing HTML and CSS, the application is responsive across various devices, ensuring a consistent and visually appealing experience on desktops, tablets, and smartphones.</p>
<p>Real-time Calculations: The calculator performs real-time calculations, allowing users to see results instantly as they input numbers and operations.</p>
<p>Supports Basic Operations: The application supports essential arithmetic operations, including addition, subtraction, multiplication, and division, making it a versatile tool for everyday calculations.</p>
<p>Clear Entry and Reset: Users can easily clear their input or reset the entire calculation with intuitive buttons, enhancing the overall usability.</p>
<p>Error Handling: The calculator includes robust error handling to ensure accurate and reliable calculations, providing a smooth user experience.</p>
<p>Code Efficiency: Behind the scenes, the JavaScript code is well-organized and efficient, demonstrating my commitment to writing clean and maintainable code. </p>
<p>This calculator project not only showcases my technical skills in web development but also reflects my dedication to creating applications that prioritize user experience. I am excited to continue exploring and pushing the boundaries of web development in future projects.</p>
</div>
<!-- Footer -->
<footer class="footer">
<a href=mailto:alecmarkmorris@gmail.com?subject=Portfolio%20Website class="footer__link">alecmarkmorris@gmail.com</a>
<ul class="social-list">
<li class="social-list__item">
<a class="social-list__link" href="https://github.com/alecmarkmorris" target="_blank">
<i class="fab fa-github"></i>
</a>
</li>
<li class="social-list__item">
<a class="social-list__link" href="https://www.linkedin.com/in/alec-morris-a91050274/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li class="social-list__item">
<a class="social-list__link" href="https://leetcode.com/Alecmarkmorris/" target="_blank">
LeetCode
</a>
</li>
</ul>
</footer>
<script src="index.js"></script>
</body>
</html>