-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
61 lines (53 loc) · 2.39 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
<!DOCTYPE html>
<html lang="en">
<!--We are in visual studio code right now-->
<!--Below here is html standing for hyper text markup language used to create the structure of the website-->
<head>
<title>Ernesto's AboutMe</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- A favicon is a small image displayed next to the page title in the browser tab -->
<link rel="icon" type="image" href="/images/OIP (1).jpg" />
<!--Internal Css is below where it's used in the html document where it affects all of the p with blueviolet color -->
<!--* means all is gonna be selected border covers all in a border with a solid,dotted and line -->
<!--Connector that adds the css file into the html document. -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div>
<nav class="navbar">
<a href="index.html" class="sidebar">About Me</a>
<a href="pages/projects.html" class="sidebar">Projects</a>
<a href="pages/contact.html" class="sidebar">Contact Me</a>
</nav>
</div>
<center>
<!--Style attribute that adds styles to elements. Such as color, font and size-->
<!--In line 12 in line CSS know as Cascading Style Sheets. For styling the strcuture of the html page -->
<!-- is center tag is used to align text to center-->
<br />
<h1>Ernesto Mireles</h1>
<p class="invs">Hello my name is Ernesto.</p>
<!--img tag thats embed an image in a web page/ alt is the name it will show when the picture isnt available.-->
<!-- <img src="images/ERNESTOMIRELES.jpg" alt="Not Found ErnestoMireles.jpg" /> -->
<div>
<div class="Ernesto"></div>
</div>
<!--Break tag is below, which in short breaks the line to start a whole new line to start, used for formatting, but not recommended-->
<br />
<!--The a attribute specifies where to open the linked document:-->
<!-- The attribute _blink tells the browser to open a new windows.-->
<!--Target attribute used to specify where a linked document will open-->
<p></p>
<a
href="https://www.linkedin.com/in/ernesto-mireles-2aba66303/"
target="_blank"
class="colors"
>
Follow me on LinkedIn</a
>
</center>
</body>
<!-- contact information element that contains -->
<footer></footer>
</html>