-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
86 lines (69 loc) · 4.64 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>About</title>
<link href="./about.css" rel="stylesheet" type="text/css" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<!--I created a responsive navigation bar-->
<nav class="navbar navbar-expand-md my-3" aria-hidden="true">
<a class="navbar-brand" href="#"></a>
</nav>
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top my-nav" id="myNav">
<div class="container-fluid">
<a class="navbar-brand" href="./index.html">Home</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="./about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="./projects.html">Projects & Skills</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="./contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!--I created placeholders (empty elements) for the content I populated via javascript.-->
<div class="display-1 text-center fst-italic text-decoration-underline" id="msgDiv"><p></p></div>
<!--I created a container with a row and 2 columns consisting of a responsive bootsrap image in the first column and a cover letter in the second column. Both have responsive bootsrap button underneath.-->
<div class = "container">
<div class = "row">
<div class = "col">
<img class="img-fluid img-thumbnail rounded" id="myImg" src="./myImages/Tati1.jpg" alt="New York">
<div class="d-grid gap-2 d-md-block">
<button class="btn btn-secondary btn-outline-info" id="myButton" type="button">Change Photo</button>
</div>
</div>
<div class = "col">
<p id="p">Hello! My name is <span class="fst-italic text-decoration-underline">Tatyana Cuttino.</span> I am a front end and back-end, software developer. I have been working as a web developer since January 2024. I believe I am a very ambitious person who loves to work on making websites function correctly. Working on websites and software is my passion as I love to work on exciting projects. This is the field I get to express my creativity and innovation. I have a passion for creating user-friendly and visually appealing websites. I have a strong understanding of HTML, CSS, Bootstrap, JavaScript and Technical Support. I am always eager to learn and improve my skills.</p>
<div class="d-grid gap-2 d-md-block">
<button class="btn btn-secondary btn-outline-info" id="Bttn2" type="button">Change Color</button>
</div>
</div>
</div>
</div>
<!--My bottom nav bar with image links (If using Replit, click New Tab to open in external browser and then click links because replit does not support all external page) -->
<nav class="navbar bottom navbar-light">
<div class="container-fluid mt-5">
<a class="navbar-brand" href="https://profile.indeed.com/p/tatyanac-qmwnz18"><img src="./myImages/indeed.png" alt="Indeed" width="30" height="24"></a>
<a class="navbar-brand" href="https://github.com/Tatyanac94"><img src="./myImages/git.png" alt="" width="30" height="24"></a>
<a class="navbar-brand" href="https://replit.com/@mscuttino94"><img src="./myImages/replit.png" alt="" width="30" height="24"></a>
<a class="navbar-brand" href="https://www.linkedin.com/in/tatyana-cuttino-996323149"><img src="./myImages/linkedIn.png" alt="" width="30" height="24"></a>
</div>
</nav>
<!--I added a script tag to my HTML file that links to my JavaScript file-->
<script src="./about.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>