Index.html lehe kood

Siin on Index.html lehe kood:

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
<head>
    <link rel="stylesheet" href="Style.css">
</head>
<title>
    Robin Aas
</title>
<h1 class="Koduleht">
    Robin Aas Koduleht
</h1>
<p class="Vaike">
    Veebirakenduste toode koduleht
</p>
<h1 class = "Tehtud">
    Tehtud tood
</h1>
 
 
    <table class = "Tabel" border="1">
        <tr>
            <td>Minu HTML/CSS tood</td>
            <td>
                <a class = "Kalkulaator" target=”_blank href ="Kalkulaator-main/kalkulaator.html">
                    Lihtne Kalkulaator
                </a>
            <br>
            <a class = "Retseptiraamat" target=”_blank href="raamat-main/index.html">
                Retseptiraamat
            </a>
            <br>
            <a class = "TumeHele" target=”_blank href="TumeHele-main/Heletume.html">
                Tume/Hele Taust
            </a>
            <br>
            </td>
        </tr>
        <tr>
            <td>Minu PHP tood</td>
            <td>
            <a class = "PHP" target=”_blank href="PHP-main/">
                PHP ulesanded
            </a>
            <br>
            <a class = "Jalgrattaeksam" target=”_blank href="Jalgrattaeksam/registreerimine.php">Jalgrattaeksam
            </a>
            <br>
            <a class = "Loomad" target=”_blank href="loomad/loomad.php">Loomad
            </a>
            <br>
            <a class = "Autoremont" target=”_blank href="loomad/Autoremonditookoda.php">Autoremont
            </a>
            <br>
            </td>
 
        </tr>
        </table>

CSS-i kujundus on lisatud eraldi failina

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
110
111
112
<style>
    .Koduleht{
        color: rgb(255, 255, 255);
        background-color: rgb(80, 80, 80);
        text-align: center;
        border-radius: 6px;
        padding-bottom: 0px;
        margin-bottom: 1px;
        font-family: Arial;
         
 
    }
 
    .Vaike{
        text-align: center;
        margin-top: 1px;
        margin-bottom: 25px;
        font-weight: bold;
        color: white;
        background-color: rgb(80, 80, 80);
        border-radius: 6px;
        font-size: 20px;
        font-family: Times New Roman;
 
    }
 
    .Tehtud{
        font-family: Arial;
        text-align: center;
         
         
    }
 
    .Tabel{
        border: 1px solid, rgb(0, 0, 0);
        width: 100%;
        border-collapse: collapse;
    }
 
    .Retseptiraamat{
        color: rgb(0, 108, 141);
        transition: color 0.15s;
    }
 
    .Retseptiraamat:hover{
        color: coral;
        cursor: pointer;
    }
 
    .Kalkulaator{
        color: rgb(0, 108, 141);
        transition: color 0.15s;
 
    }
 
    .Kalkulaator:hover{
        color: coral;
        cursor: pointer;
    }
 
 
    .TumeHele{
        color: rgb(0, 108, 141);
        transition: color 0.15s;
    }
 
    .TumeHele:hover{
        color: coral;
        cursor: pointer;
    }
 
    .PHP{
        color: rgb(0, 108, 141);
        transition: color 0.15s;
    }
 
    .PHP:hover{
        color: coral;
    }
     
    .Jalgrattaeksam{
        color: rgb(0, 108, 141);
        transition: color 0.15s;
    }
 
       .Jalgrattaeksam:hover{
        color: coral;
        cursor: pointer;
    }
 
        .Loomad{
        color: rgb(0, 108, 141);
        transition: color 0.15s;
    }
 
       .Loomad:hover{
        color: coral;
        cursor: pointer;
    }
 
 
            .Autoremont{
        color: rgb(0, 108, 141);
        transition: color 0.15s;
    }
 
       .Autoremont:hover{
        color: coral;
        cursor: pointer;
    }
 
</style>

Pilt Index.html lehest (http://robinaas22.thkit.ee):