Skip to content

Commit c121af6

Browse files
committed
initial upload
1 parent 95e58d2 commit c121af6

File tree

22 files changed

+292
-0
lines changed

22 files changed

+292
-0
lines changed

.gitignore

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
2+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
3+
4+
# User-specific stuff:
5+
*/.idea
6+
.idea/**/workspace.xml
7+
.idea/**/tasks.xml
8+
9+
10+
# Sensitive or high-churn files:
11+
.idea/**/dataSources/
12+
.idea/**/dataSources.ids
13+
.idea/**/dataSources.xml
14+
.idea/**/dataSources.local.xml
15+
.idea/**/sqlDataSources.xml
16+
.idea/**/dynamic.xml
17+
.idea/**/uiDesigner.xml
18+
19+
# Gradle:
20+
.idea/**/gradle.xml
21+
.idea/**/libraries
22+
23+
# Mongo Explorer plugin:
24+
.idea/**/mongoSettings.xml
25+
26+
## File-based project format:
27+
*.iws
28+
29+
## Plugin-specific files:
30+
31+
# IntelliJ
32+
/out/
33+
34+
# mpeltonen/sbt-idea plugin
35+
.idea_modules/
36+
37+
# JIRA plugin
38+
atlassian-ide-plugin.xml
39+
40+
# Crashlytics plugin (for Android Studio and IntelliJ)
41+
com_crashlytics_export_strings.xml
42+
crashlytics.properties
43+
crashlytics-build.properties
44+
fabric.properties
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE html>
2+
<head>
3+
<title>Borders</title>
4+
</head>
5+
<body>
6+
<p style="border: 2px solid red; border-radius: 10px; background: lightgray; text-align: center; padding: 2px"><span style="color: red;">Red</span> Border</p>
7+
<p style="border: 2px solid green; border-radius: 10px; background: lightgray; text-align: center; padding: 2px"><span style="color: green;">Green</span> Border</p>
8+
<p style="border: 2px solid blue; border-radius: 10px; background: lightgray; text-align: center; padding: 2px"><span style="color: blue;">Blue</span> Border</p>
9+
</body>
10+
</html>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<!DOCTYPE html>
2+
<head>
3+
<title>Colors</title>
4+
</head>
5+
<body>
6+
<p>Once the <span style="color: blue;">blue plum</span> met the <span style="color: red">red tomato</span> playing with the <span style="color: green;">green cucumber</span>.</p>
7+
</body>
8+
</html>
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<!DOCTYPE html>
2+
<head>
3+
<title>Contact Form</title>
4+
<link rel="stylesheet" type="text/css" href="styles.css">
5+
</head>
6+
<body>
7+
<h1>Contact Us</h1>
8+
<form>
9+
<span>First name:</span>
10+
<input type="text" name="firstName"/>
11+
<br/>
12+
<span>Last name:</span>
13+
<input type="text" name="lastName"/>
14+
<br/>
15+
<span>Email:</span>
16+
<input type="text" name="email"/>
17+
<br/>
18+
<span>Town:</span>
19+
<select name="town">
20+
<option disabled selected value>Choose a town...</option>
21+
<option value="1">Sofia</option>
22+
<option value="2">Varna</option>
23+
<option value="3">Stara Zagora</option>
24+
<option value="4">Burgas</option>
25+
<option value="5">Shumen</option>
26+
<option value="6">Montana</option>
27+
</select>
28+
<br/>
29+
<input type="submit" value="Submit">
30+
</form>
31+
</body>
32+
</html>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
form {
2+
background: #eee;
3+
display: inline-block;
4+
}
5+
6+
form span {
7+
display: inline-block;
8+
width: 80px;
9+
background: #eee;
10+
margin: 10px 3px 3px 8px;
11+
}
12+
13+
form input, form select {
14+
width: 150px;
15+
height: 20px;
16+
margin: 0px 5px;
17+
box-sizing: border-box;
18+
}
19+
20+
form input[type='submit'] {
21+
display: block;
22+
margin: 10px 0px 12px 98px;
23+
width: 80px;
24+
height: 30px;
25+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<head>
3+
<title>Contact Us</title>
4+
</head>
5+
<body>
6+
<h1>Contact Us</h1>
7+
<form>
8+
<!- Margin of 5 pixels is added in order the elements to be separated -!>
9+
10+
First name: <input type="text" style="margin: 5px"/>
11+
<br/>
12+
Second name: <input type="text" style="margin: 5px;"/>
13+
<br/>
14+
<input type="submit" , value="Submit" style="margin: 5px;"/>
15+
</form>
16+
</body>
17+
</html>
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html>
2+
<head>
3+
<title>Fruits</title>
4+
</head>
5+
<body>
6+
<h1>Fruits</h1>
7+
<p>
8+
<img src="images\banana.png" , alt="Picture of bananas">
9+
<img src="images\orange.png" , alt="Picture of an orange">
10+
<img src="images\kiwi.png" , alt="Picture of a kiwi">
11+
<img src="images\kiwi.png" , alt="Picture of a kiwi">
12+
<img src="images\apple.png" , alt="Picture of an apple">
13+
</p>
14+
<p>
15+
<img src="images\apple.png" , alt="Picture of an apple">
16+
<img src="images\apple.png" , alt="Picture of an apple">
17+
<img src="images\banana.png" , alt="Picture of bananas">
18+
<img src="images\kiwi.png" , alt="Picture of a kiwi">
19+
<img src="images\orange.png" , alt="Picture of an orange">
20+
</p>
21+
<p>
22+
<img src="images\orange.png" , alt="Picture of an orange">
23+
<img src="images\banana.png" , alt="Picture of bananas">
24+
<img src="images\orange.png" , alt="Picture of an orange">
25+
<img src="images\orange.png" , alt="Picture of an orange">
26+
<img src="images\apple.png" , alt="Picture of an apple">
27+
</p>
28+
</body>
29+
</html>
9.76 KB
Loading
9.14 KB
Loading
14.5 KB
Loading
Loading
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<head>
3+
<title>Headings</title>
4+
</head>
5+
<body>
6+
<h1>Headings Exercise</h1>
7+
<h2>First Heading (Bigger)</h2>
8+
<h3>Second Heading (Smaller)</h3>
9+
<h4>Third Heading (Even Smaller)</h4>
10+
<h5>Fourth Heading (Smallest)</h5>
11+
</body>
12+
</html>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE html>
2+
<head>
3+
<title>Hello HTML</title>
4+
</head>
5+
<body>
6+
<h1>Hello HTML!</h1>
7+
<p>I am <strong>Georgi</strong>. I am from <a href="http://sofia.bg" target="_blank">Sofia</a>.</p>
8+
<p>I study <em>Software Technologies</em> at <a href="https://softuni.bg" target="_blank">SoftUni</a>.</p>
9+
</body>
10+
</html>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
body {
2+
background: #EEE;
3+
line-height: 1.5em;
4+
font-size: 24pt;;
5+
}
6+
7+
.lang {
8+
border: 1px #AAA;
9+
border-radius: 10px;
10+
background: #CCC;
11+
padding: 10px;
12+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE html>
2+
<head>
3+
<title>Languages</title>
4+
<link rel="stylesheet" type="text/css" href="langs.css">
5+
</head>
6+
<body>
7+
<p>Programming languages like <span class="lang">PHP</span>, <span class="lang">JavaScript</span>, <span
8+
class="lang">C#</span> and <span class="lang">Java</span> are general-purpose.</p>
9+
</body>
10+
</html>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<head>
3+
<title>TODO List</title>
4+
</head>
5+
<body>
6+
<h1>My TODO List</h1>
7+
<ul>
8+
<li>HTML5 Course &#64; SoftUni</li>
9+
<li>Homework HTML &amp; CSS</li>
10+
<li>Teddy &ndash; birthday present</li>
11+
</ul>
12+
</body>
13+
</html>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<head>
3+
<title>Paragraphs</title>
4+
</head>
5+
<body>
6+
<h1>Paragraphs</h1>
7+
<p><em>First</em> paragraph</p>
8+
<p><em>Second</em> paragraph</p>
9+
<br />
10+
<p><em>Third</em> paragraph</p>
11+
</body>
12+
</html>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<head>
3+
<title>Rectangles</title>
4+
</head>
5+
<body>
6+
<div style="border: 3px dotted blue; border-radius: 10px; padding: 15px;">
7+
<div style="border: 1px dashed red; border-radius: 10px; padding: 15px">
8+
<div style="border: 2px solid green; border-radius: 5px; padding: 15px; text-align: center; font-size: 20px">I am heavily packed &ltDIV&gt
9+
</div>
10+
</div>
11+
</div>
12+
</body>
13+
</html>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<head>
3+
<title>Hello HTML</title>
4+
</head>
5+
<body>
6+
<h1>Hello HTML!</h1>
7+
<p>I am <strong>Georgi</strong>. I am from <a href="http://sofia.bg" target="_blank">Sofia</a>.</p>
8+
<p>I study <em>Software Technologies</em> at <a href="https://softuni.bg" target="_blank">SoftUni</a>.</p>
9+
<p>back to <a href="home.html">home</a></p>
10+
</body>
11+
</html>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<head>
3+
<title>Home</title>
4+
</head>
5+
<body>
6+
<h1>Home</h1>
7+
<ul>
8+
<li><a href="hello.html">hello.html</a></li>
9+
<li><a href="todo.html">todo.html</a></li>
10+
</ul>
11+
</body>
12+
</html>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<head>
3+
<title>TODO List</title>
4+
</head>
5+
<body>
6+
<h1>My TODO List</h1>
7+
<ul>
8+
<li>HTML5 Course &#64; SoftUni</li>
9+
<li>Homework HTML &amp; CSS</li>
10+
<li>Teddy &ndash; birthday present</li>
11+
</ul>
12+
<p>back to <a href="home.html">home</a></p>
13+
</body>
14+
</html>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<!DOCTYPE html>
2+
<head>
3+
<title>Welcome</title>
4+
</head>
5+
<body>
6+
<p>I am learning <strong>HTML</strong> and <strong>CSS</strong>!</p>
7+
</body>
8+
</html>

0 commit comments

Comments
 (0)