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
Empty file added Adam/assets/img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions Adam/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>

<html>
<head>
<title>
A Simple HTML Document
</title>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<p id="blue">This is a very simple HTML document made by Adam.</p>
<p>It only has two paragraphs</p>
</body>
</html>
Empty file added Adam/scripts/main.js
Empty file.
36 changes: 36 additions & 0 deletions Adam/styles/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
ul {
background-color: blue;
}

/* ID tags can only be used on one element. */
#blue {
background-color: blue;
font-size: 40px;
}

/* Classes can be used on moultiple elements. */
ul.pinklist {
background-color: pink;
font-size: 40px;
}


/* Any element contained within a ul element with class ul. */
ul .pinklist {
background-color: pink;
font-size: 40px;
}

/* Define multiple elemnts with the same styles. */
p, h6, h7 {
background-color: pink;
font-size: 40px;
}

/* Every p element imediatly following a div element. */
div + p {
background-color: pink;
font-size: 40px;
}


30 changes: 30 additions & 0 deletions Mark.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en-US">


<head>
<title> My bio pagee</title>
<!-- -->
<LINK REL="SHORTCUT ICON" HREF="assets/profile_f4I_icon.ico">
<link rel="stylesheet" type="text/css" href="css/app.css">
</head>

<body>


<img src="assets/profile.jpeg" alt="Picture of Mark">
<h1>Mark Camball, P.Eng.</h1>


<p>Mark is <span class="aboutmeborder"> a </span> ________</p>

<hr>
<p> Mark likes ___ </p>

<hr>
<div id="social">
<p> His social media accounts are: <a href="https://ca.linkedin.com/in/mark-camball">Linkedin</a></p>
</div>

</body>
</html>
14 changes: 14 additions & 0 deletions Wayne.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>

<head>
<title>html made by Wayne</title>
<link rel="stylesheet" type="text/css" href="styles/style.css">
</head>

<body>
<h1 class="header">Hello!</h1>
<p>I am Wayne. I am learning the blockchain development.git </p>
</body>

</html>
12 changes: 12 additions & 0 deletions dylan.html.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!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>Dylan</title>
</head>
<body>
<p> Dylan </p>
</body>
</html>
13 changes: 10 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,18 @@

<head>
<title>GBC Blockchain</title>
<link rel="stylesheet" href="styles/style.css">
</head>

<body>
<h1>INTRO TO BLOCKCHAIN COURSE</h1>
<h2>Welcome Everyone</h2>
<h1 class="header">INTRO TO BLOCKCHAIN COURSE</h1>
<h1 class="header" id="awesome-header">Hello</h1>

<p>"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."</p>
<h2 id="gbc">Welcome Everyone</h2>

<p class="body-text">"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."</p>

<p class="body-text">dhfksdjahfdsahfjkldshfjdshfdshfsdhfjksdhfdhsk</p>

<p id="priom">Priom Chowdhury</p>
</body>
11 changes: 11 additions & 0 deletions styles/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.header {
color: red;
}

#awesome-header {
font-size: 40px;
}

#priom {
color: purple;
}