-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (72 loc) · 3.07 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--Main Section-->
<main class="main">
<header>
<h1>Brandon Torres</h1>
</header>
<p>A Web Developer</p>
<div class="circle" draggable="true"></div>
<div class="triangle" draggable="true"></div>
</main>
<!--End of Main Section-->
<!--Content Section-->
<section class="Content">
<div class="container">
<img src="./assets/Picture.jpg" alt="Brandon" height="120" width="120" class="Picture">
<h2>Hello There 👋</h2>
<p class="text">I have been programming for two years through courses and school. <br>
In my free time I like to play soccer⚽.</p>
</div>
<div class="line">
<div class="divider"></div>
<div class="divider"></div>
<div class="divider"></div>
</div>
<h3>My Skills</h3>
<div class="all-sections">
<div class="first-section">
<h4>Coding</h4>
<img src="./assets/download.jpeg" alt="Coding" height="200px" width="200px">
<p class="description">I have a passion for programming and <br>have enjoyed it ever since.</p>
</div>
<div class="second-section">
<h4>Design</h4>
<img src="./assets/Design.jpeg" alt="Design" height="200px" width="200px">
<p class="description">I love designing new projects from scratch. <br>It is such a stress reliever for me.</p>
</div>
<div class="third-section">
<h4>Microsoft Office</h4>
<img src="./assets/Microsoft.jpeg" alt="Microsoft" height="200px" width="200px">
<p class="description">I have intermediate knowledge of <br> all the Microsoft Application. <br>I can utilize what I learned to any employer.</p>
</div>
</div>
</section>
<!--End of Content Section-->
<!--Contact Me Section-->
<div class="contact">
<h5>Let's get in touch</h5>
<h6>If you want to build a project together.</h6>
<div class="btn-flex">
<button type="button" class="btn" href="mailto:[email protected]" onclick="Messages()">Contact Me</button>
<button type="button" class="btn2" onclick="Prompt()">Click Me!</button>
</div>
</div>
<!--End of Contact Section-->
<div class="footer">
<nav class="links">
<a href="https://www.linkedin.com/in/brandon-torres-b5552b25b/">Linkedln</a>
<a href="https://northstarpaintingserviceslcc.com/index.html">Projects</a>
<a href="https://github.com/Soccermay">Github</a>
</nav>
<p class="copyright">© Brandon Torres. All RIghts Reserved.</p>
</div>
<script src="script.js"></script>
</body>
</html>