Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}
73 changes: 71 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,78 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="style/index.css" media="screen"/>
<title>Jose Dolar </title>
</head>
<body>

<div class="main_container">
<div class="header_and_nav">
<h1> Jose Dolar</h1>
<div class="nav">
<a href=#>Home</a>
<a href=#>About</a>
<a href=#>Contact</a>
<a href=#>Projects</a>
</div>
</div>
</header_and_nav>
<div class="name_and_picture_container"> <!-- flex-->
<div class="picture">
<img src="https://i.picsum.photos/id/1015/6000/4000.jpg">
</div>
<div class="name">
<h1>Jose Dolar</h1>
<a href=#>My Projects</a>
<P>
I learned computer programming when I was in college. I studied Electrical Engineering and I took the BASIC programming language as an elective course. I excel in this class that I was hired to work in the university computer laboratory as assistant. My job was to help fellow student writing and debugging their programming projects.
</P>
<p>
As a result of my hands-on working experience with computers I got jobs like computer operator, computer programmer and software developer.
</p>

</div>
</div>
<div class="project_row1"> <!--flex-->
<div class="project">
<img src="https://picsum.photos/seed/picsum/200/300">
<h2>Project 1</h2>
</div>
<div class="project">
<img src="https://i.picsum.photos/id/1014/6016/4000.jpg">
<h2>Project 2</h2>
</div>
<div class="project">
<img src="https://i.picsum.photos/id/102/4320/3240.jpg">
<h2>Project 3</h2>
</div>
<div class="project">
<img src="https://i.picsum.photos/id/1024/1920/1280.jpg">
<h2>Project 4</h2>
</div>
</div>
<div class="project_row2"> <!--flex-->
<div class="project">
<img src="https://i.picsum.photos/id/1025/4951/3301.jpg">
<h2>Project 5</h2>
</div>
<div class="project">
<img src="https://i.picsum.photos/id/1018/3914/2935.jpg">
<h2>Project 6</h2>
</div>
<div class="project">
<img src="https://i.picsum.photos/id/1040/4496/3000.jpg">
<h2>Project 7</h2>
</div>
<div class="project">
<img src="https://i.picsum.photos/id/1041/5184/2916.jpg">
<h2>Project 8</h2>

</div>
</div>
<footer class="footer">
<h1>Like what you see?</h1>
<a href="#">Contact Me</a>
</footer>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
<title>Document</title>
</head>
<body>
<h1> PROJECTS </h1>
<h1> PROJECTS</h1>
</body>
</html>
128 changes: 127 additions & 1 deletion style/index.css
Original file line number Diff line number Diff line change
@@ -1 +1,127 @@
/* Add CSS styling here */
/* Reset CSS styling here */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}

.main_container{
border-color: grey;
border-width: 1px;
border-style: solid;
padding:15px;
}
.header_and_nav{
padding-top: 25px;
padding-bottom: 25px;
background-color:#CCCCCC;
}

.header_and_nav > h1{
font-size:40px;
color:red;
padding-left: 10px;
}
.nav{
margin-top:15px;
text-align: left;
padding-left: 10px;
}
.nav > a{
border-width: 1px;
border-style: solid;
border-color: green;
padding:10px;
text-decoration: none;
}
a:hover{
background-color: yellow;
color: red;
}

.name_and_picture_container{
margin-top: 10px;
display:flex;
justify-content: space-between;
}
.picture{
width:46.70%;
height:300px;
margin-top:15px;
}
.picture > img{
width:100%;
height:100%;
}
.name{
padding-top: 50px;
padding-left: 50px;
border:5px;
/*width:40px;*/
width:46.70%;
/* background-color:#CCCCCC;*/
box-sizing: border-box;
}
.name > h1, .footer > h1{
font-size: 24px;
margin-bottom: 5px;
}
.name >p{
text-align: justify;
}
.name > a, .footer >a {
border-width: 1px;
border-style: solid;
border-color: green;
padding:3px;
margin-top:10px;
margin-bottom:10px;
text-decoration: none;
}

.name >p{
margin-top:10px;
}
.project_row1, .project_row2{
display:flex;
justify-content: space-between;
margin-top: 60px;
margin-bottom: 60px;

}
.project{
width:20%;
height:200px;
text-align: center;
}
.project > img{
width:100%;
height:100%;
}
.project > img:hover{
width:110%;
height:110%;
}
.footer{
margin-top: 20px;
text-align: center;
padding:10px;
background-color:#CCCCCC;
}