-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (71 loc) · 3.01 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Katie's Portfolio</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<!-- name and welcome msh-->
<!-- brie bio, footer and atleast one section elemnet
unordered or ordered list of links two types of headings! two images!-->
<header class="text-center container-fluid" id="header">
<h1 class="display_name"> Cintiha K. Rosas-Gordillo </h1>
<h2 class="welcome_msg">Welcome to my digital portfolio </h2>
</header><!-- this is the end of my header-->
<!-- end of name and welcome msg -->
<!-- the 3 cards for each section -->
<div class="row" >
<a href="about.html">
<div class="column about" id="about" >
<h3> About Me</h3>
</div> <!-- column 1 end -->
</a>
<a href="projects.html">
<div class="column project" id="projects">
<h3> Projects </h3>
</div><!-- column two end -->
</a>
<a href="contact.html">
<div class="column contact" id="contact" >
<h3>Contact Me</h3>
</div><!--column 3 end -->
</a>
</div><!-- end of row -->
<!-- end of cards for each sectin -->
<!-- links to linked in, resume and certificatin -->
<div class="rowss"> <!-- ROW 2-->
<div class="columns">
<a href="https://www.linkedin.com/in/cintiha-katie-rosas-gordillo-1571b3187/">
<img class="linked_in" src="../code/images/LinkedIn.jpg" alt="linked-in logo">
Linked-In Profile
</a>
</div>
<div class="columns">
<a href="https://courses.edx.org/certificates/3dd13d70e2bb47e1b45e876ffb480899">
<img class="certification" src="../code/images/certificatiom.png" alt="certification logo">
Certificate
</a>
</div>
<div class="columns">
<a href="../code/images/resume_cintiha_rosas.pdf">
<img class="resume" src="../code/images/resume_logo.png" alt="resume logo">
Resume
</a>
</div>
</div> <!-- END OF ROW2-->
<!-- end of links of linked in, resume and certification -->
<!-- footer section-->
<div class="footer">
<footer>
<p> Cintiha Rosas-Gordillo, B.S. Computer Science & Business Administration, Portland State University, Web Portfolio</p>
</footer>
</div>
<!-- end of footer-->
</body>
</html>