From a59658f1f5e2a232d4878ba8ae9efe087ec0d260 Mon Sep 17 00:00:00 2001 From: marcchevaldonne Date: Thu, 8 Sep 2022 18:27:43 +0200 Subject: [PATCH] :tada: first push --- .drone.yml | 17 +++++++++++++++++ README.md | 13 +++++++++++++ mycoolstyle.css | 32 ++++++++++++++++++++++++++++++++ page.html | 34 ++++++++++++++++++++++++++++++++++ 4 files changed, 96 insertions(+) create mode 100644 .drone.yml create mode 100644 mycoolstyle.css create mode 100644 page.html diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..44858f9 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,17 @@ +kind: pipeline +type: docker +name: HtmlCssTest + +trigger: + event: + - push + +steps: + - name: code-analysis + image: aosapps/drone-sonar-plugin + settings: + sonar_host: + from_secret: sonar_host + sonar_token: + from_secret: sonar_token + diff --git a/README.md b/README.md index 99e351b..0f9988f 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,16 @@ +[![Build Status](https://codefirst.iut.uca.fr/api/badges/$REPO_OWNER/$REPO_NAME/status.svg)](https://codefirst.iut.uca.fr/$REPO_OWNER/$REPO_NAME) +[![Quality Gate Status](https://codefirst.iut.uca.fr/sonar/api/project_badges/measure?project=$REPO_NAME&metric=alert_status)](https://codefirst.iut.uca.fr/sonar/dashboard?id=$REPO_NAME) +[![Bugs](https://codefirst.iut.uca.fr/sonar/api/project_badges/measure?project=$REPO_NAME&metric=bugs)](https://codefirst.iut.uca.fr/sonar/dashboard?id=$REPO_NAME) +[![Code Smells](https://codefirst.iut.uca.fr/sonar/api/project_badges/measure?project=$REPO_NAME&metric=code_smells)](https://codefirst.iut.uca.fr/sonar/dashboard?id=$REPO_NAME) +[![Coverage](https://codefirst.iut.uca.fr/sonar/api/project_badges/measure?project=$REPO_NAME&metric=coverage)](https://codefirst.iut.uca.fr/sonar/dashboard?id=$REPO_NAME) +[![Duplicated Lines (%)](https://codefirst.iut.uca.fr/sonar/api/project_badges/measure?project=$REPO_NAME&metric=duplicated_lines_density)](https://codefirst.iut.uca.fr/sonar/dashboard?id=$REPO_NAME) +[![Lines of Code](https://codefirst.iut.uca.fr/sonar/api/project_badges/measure?project=$REPO_NAME&metric=ncloc)](https://codefirst.iut.uca.fr/sonar/dashboard?id=$REPO_NAME) +[![Maintainability Rating](https://codefirst.iut.uca.fr/sonar/api/project_badges/measure?project=$REPO_NAME&metric=sqale_rating)](https://codefirst.iut.uca.fr/sonar/dashboard?id=$REPO_NAME) +[![Reliability Rating](https://codefirst.iut.uca.fr/sonar/api/project_badges/measure?project=$REPO_NAME&metric=reliability_rating)](https://codefirst.iut.uca.fr/sonar/dashboard?id=$REPO_NAME) +[![Security Rating](https://codefirst.iut.uca.fr/sonar/api/project_badges/measure?project=$REPO_NAME&metric=security_rating)](https://codefirst.iut.uca.fr/sonar/dashboard?id=$REPO_NAME) +[![Technical Debt](https://codefirst.iut.uca.fr/sonar/api/project_badges/measure?project=$REPO_NAME&metric=sqale_index)](https://codefirst.iut.uca.fr/sonar/dashboard?id=$REPO_NAME) +[![Vulnerabilities](https://codefirst.iut.uca.fr/sonar/api/project_badges/measure?project=$REPO_NAME&metric=vulnerabilities)](https://codefirst.iut.uca.fr/sonar/dashboard?id=$REPO_NAME) + # templateHtmlCss A simple template for a web page in html css. \ No newline at end of file diff --git a/mycoolstyle.css b/mycoolstyle.css new file mode 100644 index 0000000..92d69df --- /dev/null +++ b/mycoolstyle.css @@ -0,0 +1,32 @@ +body { + padding-left: 11em; + font-family: Georgia, 'Georgia', "Times New Roman", + Times, serif; + color: darksalmon; + background-color: rgb(39, 39, 84) } + ul.navbar { + list-style-type: none; + padding: 0; + margin: 0; + position: absolute; + top: 2em; + left: 1em; + width: 9em } + h1 { + font-family: Helvetica, Geneva, Arial, + SunSans-Regular, sans-serif } + ul.navbar li { + background: white; + margin: 0.5em 0; + padding: 0.3em; + border-right: 1em solid darksalmon } + ul.navbar a { + text-decoration: none } + a:link { + color: blue } + a:visited { + color: darkblue } + address { + margin-top: 1em; + padding-top: 1em; + border-top: thin dotted } \ No newline at end of file diff --git a/page.html b/page.html new file mode 100644 index 0000000..c112ce1 --- /dev/null +++ b/page.html @@ -0,0 +1,34 @@ + + + + $REPO_NAME - One incredible styled html page + + + + + + + + + +

$REPO_NAME is my first page, and it has got style!

+ +

Welcome on this template html/css project + +

Very simple, some links, some menu... make it your own +… + +

I have nothing more to say + + +

Template made in 2022
+ with Code#0 Code#0 +
+ + + \ No newline at end of file