-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (79 loc) · 3.4 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
82
83
84
<!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>Portfolio webpage</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/690c3aebfa.js" crossorigin="anonymous"></script>
</head>
<body>
<nav id="navbar">
<ul>
<li><a href="#welcome-section">About</a></li>
<li><a href="#projects">Work</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<section id="welcome-section">
<div class="about">
<h1>Hey I am Ulises</h1>
<p>a full stack developer</p>
</div>
</section>
<section id="projects">
<h1> These are some of my projects</h1>
<div>
<a href="https://codepen.io/ulisesjuarez/full/abVeoRz" target="_blank" class="project-tile">
<img src="https://raw.githubusercontent.com/UlisesJuarez/Responsive-Web-Design/main/img/tribute.JPG"
alt="tribute page" />
<p class="project-title">
<span class="code"><</span>
Tribute Page
<span class="code">/></span>
</p>
</a>
<a href="https://codepen.io/ulisesjuarez/full/YzEmpwP" target="_blank" class="project tile">
<img src="https://raw.githubusercontent.com/UlisesJuarez/Responsive-Web-Design/main/img/product.JPG"
alt="product landing">
<p class="project-title">
<span class="code"><</span>
Product landing page
<span class="code">/></span>
</p>
</a>
</div>
<div>
<a href="https://codepen.io/ulisesjuarez/full/qBVzzKP" target="_blank" class="project-tile">
<img src="https://raw.githubusercontent.com/UlisesJuarez/Responsive-Web-Design/main/img/survey.JPG"
alt="survey form" />
<p class="project-title">
<span class="code"><</span>
Survey form
<span class="code">/></span>
</p>
</a>
<a href="https://ulisesjuarez.github.io/TinDog/" target="_blank" class="project tile">
<img src="https://raw.githubusercontent.com/UlisesJuarez/Responsive-Web-Design/main/img/tindog.JPG"
alt="tin dog">
<p class="project-title">
<span class="code"><</span>
TinDog
<span class="code">/></span>
</p>
</a>
</div>
</section>
<section id="contact">
<div>
<h1>Contact me!!</h1>
<div>
<a href="https://github.com/UlisesJuarez" id="profile-link" target="_blank"><i class="fab fa-brands fa-github fa-5x"></i></a>
<a href="www.linkedin.com/in/ulises-juárez-espinoza-a76865232" id="profile-link" target="_blank"><i class="fab fa-brands fa-linkedin fa-5x"></i></a>
<a href="https://www.facebook.com/ulises.juarezespinoza.7" id="profile-link" target="_blank"><i class="fab fa-brands fa-facebook fa-5x"></i></a>
</div>
</div>
</section>
</body>
</html>